jemallocator/Cargo.toml

42 lines
1.2 KiB
TOML
Raw Normal View History

2016-01-21 01:03:24 +00:00
[package]
name = "jemallocator"
2018-10-30 22:37:28 +00:00
version = "0.2.0"
2016-01-21 01:03:24 +00:00
authors = ["Alex Crichton <alex@alexcrichton.com>"]
2016-01-21 01:06:21 +00:00
license = "MIT/Apache-2.0"
readme = "README.md"
keywords = ["allocator"]
repository = "https://github.com/alexcrichton/jemallocator"
homepage = "https://github.com/alexcrichton/jemallocator"
documentation = "https://docs.rs/jemallocator"
2016-01-21 01:06:21 +00:00
description = """
A Rust allocator backed by jemalloc
"""
2016-01-21 01:03:24 +00:00
[lib]
test = false
bench = false
[workspace]
members = ["systest"]
2016-01-21 01:03:24 +00:00
[dependencies]
2018-10-30 22:37:28 +00:00
jemalloc-sys = { path = "jemalloc-sys", version = "0.2.0", default-features = false }
libc = { version = "^0.2.8", default-features = false }
2016-08-07 07:55:49 +00:00
2018-11-15 15:16:15 +00:00
[dev-dependencies]
paste = "0.1"
2016-08-07 07:55:49 +00:00
[features]
alloc_trait = []
default = ["background_threads_runtime_support"]
2016-08-07 07:55:49 +00:00
profiling = ["jemalloc-sys/profiling"]
2017-09-26 21:06:56 +00:00
debug = ["jemalloc-sys/debug"]
stats = ["jemalloc-sys/stats"]
background_threads_runtime_support = ["jemalloc-sys/background_threads_runtime_support"]
background_threads = ["jemalloc-sys/background_threads"]
unprefixed_malloc_on_supported_platforms = ["jemalloc-sys/unprefixed_malloc_on_supported_platforms"]
2018-11-05 19:15:59 +00:00
[package.metadata.docs.rs]
features = [ "alloc_trait" ]
rustdoc-args = [ "--cfg jemallocator_docs" ]