Cargo.toml 479 B

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