12345678910111213141516171819202122232425262728293031 |
- [package]
- name = "relibc"
- version = "0.1.0"
- authors = ["Jeremy Soller <jackpot51@gmail.com>"]
- [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" }
- errno = { path = "src/errno" }
- 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"
|