Cargo.toml 775 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. [package]
  2. name = "ralloc"
  3. version = "1.0.1"
  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]
  13. unborrow = "0.3.0"
  14. [dependencies.ralloc_shim]
  15. path = "shim"
  16. version = "0.1"
  17. [profile.release]
  18. panic = "abort"
  19. opt-level = 3
  20. debug = false
  21. rpath = false
  22. lto = true
  23. debug-assertions = false
  24. codegen-units = 1
  25. [features]
  26. default = ["tls"]
  27. # ---
  28. alloc_id = []
  29. debugger = []
  30. log = ["write", "alloc_id"]
  31. no_log_lock = ["log"]
  32. security = []
  33. testing = ["log", "debugger"]
  34. tls = []
  35. unsafe_no_mutex_lock = []
  36. write = []