Cargo.toml 465 B

12345678910111213141516171819
  1. [package]
  2. name = "ralloc_shim"
  3. version = "0.1.2"
  4. authors = ["Jeremy Soller <jackpot51@gmail.com>", "Ticki"]
  5. [profile.release]
  6. panic = "abort"
  7. opt-level = 3
  8. debug = false
  9. rpath = false
  10. lto = true
  11. debug-assertions = false
  12. codegen-units = 1
  13. [target.'cfg(not(target_os = "redox"))'.dependencies]
  14. libc = { version = "0.2", default-features = false }
  15. [target.'cfg(target_os = "redox")'.dependencies]
  16. redox_syscall = { git = "https://github.com/redox-os/syscall.git" }