Cargo.toml 352 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. [dependencies]
  10. fcntl = { path = "fcntl" }
  11. unistd = { path = "unistd" }
  12. [profile.dev]
  13. incremental = false
  14. lto = true
  15. panic = "abort"
  16. [profile.release]
  17. incremental = false
  18. lto = true
  19. panic = "abort"