Cargo.toml 642 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "relibc"
  3. version = "0.1.0"
  4. authors = ["Jeremy Soller <jackpot51@gmail.com>"]
  5. [lib]
  6. name = "c"
  7. crate-type = ["staticlib"]
  8. [workspace]
  9. members = ["crt0"]
  10. [dependencies]
  11. compiler_builtins = { git = "https://github.com/rust-lang-nursery/compiler-builtins.git", default-features = false, features = ["mem"] }
  12. platform = { path = "platform" }
  13. ctype = { path = "src/ctype" }
  14. fcntl = { path = "src/fcntl" }
  15. grp = { path = "src/grp" }
  16. stdio = { path = "src/stdio" }
  17. stdlib = { path = "src/stdlib" }
  18. string = { path = "src/string" }
  19. unistd = { path = "src/unistd" }
  20. [profile.dev]
  21. panic = "abort"
  22. [profile.release]
  23. panic = "abort"