1234567891011121314151617181920212223242526272829303132333435363738394041 |
- [package]
- name = "ralloc"
- version = "0.1.0"
- authors = ["ticki <ticki@users.noreply.github.com>"]
- # URLs and paths
- description = "An efficient alternative platform-agnostic allocator."
- repository = "https://github.com/redox-os/ralloc"
- readme = "README.md"
- # Metadata
- keywords = ["alloc", "malloc", "allocator", "ralloc", "redox"]
- license = "MIT"
- [dependencies]
- ralloc_shim = { path = "shim" }
- [dependencies.clippy]
- git = "https://github.com/Manishearth/rust-clippy.git"
- optional = true
- [profile.release]
- panic = "abort"
- opt-level = 3
- debug = false
- rpath = false
- lto = true
- debug-assertions = false
- codegen-units = 1
- [features]
- default = ["allocator", "clippy"]
- # ---
- allocator = []
- debug_tools = []
- libc_write = []
- log = ["libc_write"]
- security = []
- testing = ["log", "libc_write", "debug_tools"]
- unsafe_no_brk_lock = []
- unsafe_no_mutex_lock = []
|