1[package]
2name = "jemallocator"
3# Make sure to update the version in the README as well:
4version = "0.3.2"
5authors = [
6    "Alex Crichton <alex@alexcrichton.com>",
7    "Gonzalo Brito Gadeschi <gonzalobg88@gmail.com>",
8    "Simon Sapin <simon.sapin@exyr.org>",
9    "Steven Fackler <sfackler@gmail.com>"
10]
11license = "MIT/Apache-2.0"
12readme = "README.md"
13keywords = ["allocator", "jemalloc"]
14categories = ["memory-management", "api-bindings"]
15repository = "https://github.com/gnzlbg/jemallocator"
16homepage = "https://github.com/gnzlbg/jemallocator"
17documentation = "https://docs.rs/jemallocator"
18description = """
19A Rust allocator backed by jemalloc
20"""
21edition = "2015"
22
23[badges]
24appveyor = { repository = "gnzlbg/jemallocator" }
25travis-ci = { repository = "gnzlbg/jemallocator" }
26codecov = { repository = "gnzlbg/jemallocator" }
27is-it-maintained-issue-resolution = { repository = "gnzlbg/jemallocator" }
28is-it-maintained-open-issues = { repository = "gnzlbg/jemallocator" }
29maintenance = { status = "actively-developed" }
30
31[lib]
32test = false
33bench = false
34
35[workspace]
36members = ["systest", "jemallocator-global", "jemalloc-ctl", "jemalloc-sys" ]
37
38[dependencies]
39jemalloc-sys = { path = "jemalloc-sys", version = "0.3.2", default-features = false }
40libc = { version = "^0.2.8", default-features = false }
41
42[dev-dependencies]
43paste = "0.1"
44#jemalloc-ctl = { path = "jemalloc-ctl", version = "0.3" }
45
46[features]
47default = ["background_threads_runtime_support"]
48alloc_trait = []
49profiling = ["jemalloc-sys/profiling"]
50debug = ["jemalloc-sys/debug"]
51stats = ["jemalloc-sys/stats"]
52background_threads_runtime_support = ["jemalloc-sys/background_threads_runtime_support"]
53background_threads = ["jemalloc-sys/background_threads"]
54unprefixed_malloc_on_supported_platforms = ["jemalloc-sys/unprefixed_malloc_on_supported_platforms"]
55disable_initial_exec_tls = ["jemalloc-sys/disable_initial_exec_tls"]
56
57[package.metadata.docs.rs]
58features = [ "alloc_trait" ]
59rustdoc-args = [ "--cfg", "jemallocator_docs" ]
60