Cargo.toml 718 B

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