jemallocator/Cargo.toml

60 lines
1.9 KiB
TOML
Raw Normal View History

2016-01-21 01:03:24 +00:00
[package]
name = "jemallocator"
# Make sure to update the version in the README as well:
2019-06-14 10:13:01 +00:00
version = "0.3.2"
2018-11-07 18:57:11 +00:00
authors = [
"Alex Crichton <alex@alexcrichton.com>",
"Gonzalo Brito Gadeschi <gonzalobg88@gmail.com>",
"Simon Sapin <simon.sapin@exyr.org>",
"Steven Fackler <sfackler@gmail.com>"
]
2016-01-21 01:06:21 +00:00
license = "MIT/Apache-2.0"
readme = "README.md"
2018-11-07 18:57:11 +00:00
keywords = ["allocator", "jemalloc"]
categories = ["memory-management", "api-bindings"]
2019-04-05 14:19:10 +00:00
repository = "https://github.com/gnzlbg/jemallocator"
homepage = "https://github.com/gnzlbg/jemallocator"
documentation = "https://docs.rs/jemallocator"
2016-01-21 01:06:21 +00:00
description = """
A Rust allocator backed by jemalloc
"""
2018-11-04 13:03:39 +00:00
edition = "2015"
2016-01-21 01:03:24 +00:00
2018-11-07 18:57:11 +00:00
[badges]
2019-04-05 14:19:10 +00:00
appveyor = { repository = "gnzlbg/jemallocator" }
travis-ci = { repository = "gnzlbg/jemallocator" }
codecov = { repository = "gnzlbg/jemallocator" }
is-it-maintained-issue-resolution = { repository = "gnzlbg/jemallocator" }
is-it-maintained-open-issues = { repository = "gnzlbg/jemallocator" }
2018-11-07 18:57:11 +00:00
maintenance = { status = "actively-developed" }
[lib]
test = false
bench = false
[workspace]
2019-03-20 09:55:42 +00:00
members = ["systest", "jemallocator-global", "jemalloc-ctl", "jemalloc-sys" ]
2016-01-21 01:03:24 +00:00
[dependencies]
2019-06-14 10:13:01 +00:00
jemalloc-sys = { path = "jemalloc-sys", version = "0.3.2", 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"
jemalloc-ctl = { path = "jemalloc-ctl", version = "0.3" }
2018-11-15 15:16:15 +00:00
2016-08-07 07:55:49 +00:00
[features]
default = ["background_threads_runtime_support"]
2018-11-04 13:03:39 +00:00
alloc_trait = []
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"]
disable_initial_exec_tls = ["jemalloc-sys/disable_initial_exec_tls"]
2018-11-05 19:15:59 +00:00
[package.metadata.docs.rs]
features = [ "alloc_trait" ]
2019-04-05 14:20:45 +00:00
rustdoc-args = [ "--cfg", "jemallocator_docs" ]