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