123456789101112131415161718192021222324252627282930 |
- [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"] }
- platform = { path = "src/platform" }
- ctype = { path = "src/ctype" }
- fcntl = { path = "src/fcntl" }
- grp = { path = "src/grp" }
- semaphore = { path = "src/semaphore" }
- mman = { path = "src/mman" }
- stdio = { path = "src/stdio" }
- stdlib = { path = "src/stdlib" }
- string = { path = "src/string" }
- unistd = { path = "src/unistd" }
- [profile.dev]
- panic = "abort"
- [profile.release]
- panic = "abort"
|