forked from redox-os/relibc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (35 loc) · 1.01 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "relibc"
version = "0.1.0"
authors = ["Jeremy Soller <[email protected]>"]
[lib]
name = "c"
crate-type = ["staticlib"]
[workspace]
members = ["src/crt0"]
[dependencies]
compiler_builtins = { git = "https://github.com/rust-lang-nursery/compiler-builtins.git", default-features = false, features = ["mem"] }
ctype = { path = "src/ctype" }
errno = { path = "src/errno" }
fcntl = { path = "src/fcntl" }
fenv = { path = "src/fenv" }
float = { path = "src/float" }
grp = { path = "src/grp" }
mman = { path = "src/mman" }
platform = { path = "src/platform" }
resource = { path = "src/resource" }
semaphore = { path = "src/semaphore" }
signal = { path = "src/signal" }
stat = { path = "src/stat" }
stdio = { path = "src/stdio" }
stdlib = { path = "src/stdlib" }
string = { path = "src/string" }
sys_time = { path = "src/sys_time" }
time = { path = "src/time" }
unistd = { path = "src/unistd" }
wait = { path = "src/wait" }
wctype = { path = "src/wctype" }
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"