Cargo.toml 752 B

12345678910111213141516171819202122232425262728293031323334353637
  1. [package]
  2. name = "ralloc"
  3. version = "0.1.0"
  4. authors = ["ticki <ticki@users.noreply.github.com>"]
  5. # URLs and paths
  6. description = "An efficient alternative platform-agnostic allocator."
  7. repository = "https://github.com/redox-os/ralloc"
  8. readme = "README.md"
  9. # Metadata
  10. keywords = ["alloc", "malloc", "allocator", "ralloc", "redox"]
  11. license = "MIT"
  12. [dependencies.clippy]
  13. git = "https://github.com/Manishearth/rust-clippy.git"
  14. optional = true
  15. [profile.release]
  16. panic = "abort"
  17. opt-level = 3
  18. debug = false
  19. rpath = false
  20. lto = true
  21. debug-assertions = false
  22. codegen-units = 1
  23. [features]
  24. default = ["allocator", "clippy"]
  25. allocator = []
  26. debug_tools = []
  27. libc_write = []
  28. log = ["libc_write"]
  29. security = []
  30. unsafe_no_brk_lock = []
  31. unsafe_no_mutex_lock = []