1234567891011121314151617181920212223 |
- [package]
- name = "relibc"
- version = "0.1.0"
- authors = ["Jeremy Soller <[email protected]>"]
- [lib]
- name = "c"
- crate-type = ["staticlib"]
- [workspace]
- members = ["crt0"]
- [dependencies]
- compiler_builtins = { git = "https://github.com/rust-lang-nursery/compiler-builtins.git", default-features = false, features = ["mem"] }
- platform = { path = "platform" }
- fcntl = { path = "fcntl" }
- unistd = { path = "unistd" }
- [profile.dev]
- panic = "abort"
- [profile.release]
- panic = "abort"
|