xref: /relibc/ralloc/Cargo.toml (revision 146a5db98f2dcff608e1f3a30330e0cf1527786e)
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.clippy]
16git = "https://github.com/Manishearth/rust-clippy.git"
17optional = true
18
19[profile.release]
20panic = "abort"
21opt-level = 3
22debug = false
23rpath = false
24lto = true
25debug-assertions = false
26codegen-units = 1
27
28[features]
29default = ["allocator", "clippy"]
30allocator = []
31debug_tools = []
32security = []
33unsafe_no_brk_lock = []
34unsafe_no_mutex_lock = []
35