Cargo.toml 564 B

1234567891011121314151617181920212223242526
  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. stdio = { path = "stdio" }
  15. stdlib = { path = "stdlib" }
  16. string = { path = "string" }
  17. unistd = { path = "unistd" }
  18. [profile.dev]
  19. panic = "abort"
  20. [profile.release]
  21. panic = "abort"