Cargo.toml 508 B

123456789101112131415161718192021222324
  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. fcntl = { path = "fcntl" }
  14. string = { path = "string" }
  15. unistd = { path = "unistd" }
  16. [profile.dev]
  17. panic = "abort"
  18. [profile.release]
  19. panic = "abort"