1[package]
2name = "tikv-jemalloc-sys"
3version = "0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7"
4authors = [
5 "Alex Crichton <alex@alexcrichton.com>",
6 "Gonzalo Brito Gadeschi <gonzalobg88@gmail.com>",
7 "The TiKV Project Developers",
8]
9build = "build.rs"
10links = "jemalloc"
11license = "MIT/Apache-2.0"
12readme = "README.md"
13repository = "https://github.com/tikv/jemallocator"
14homepage = "https://github.com/tikv/jemallocator"
15documentation = "https://docs.rs/tikv-jemallocator-sys"
16keywords = ["allocator", "jemalloc"]
17description = """
18Rust FFI bindings to jemalloc
19"""
20edition = "2018"
21rust-version = "1.71.0"
22
23[badges]
24codecov = { repository = "tikv/jemallocator" }
25is-it-maintained-issue-resolution = { repository = "tikv/jemallocator" }
26is-it-maintained-open-issues = { repository = "tikv/jemallocator" }
27maintenance = { status = "actively-developed" }
28
29[dependencies]
30libc = { version = "^0.2.8", default-features = false }
31
32[build-dependencies]
33cc = "^1.0.13"
34
35[features]
36default = ["background_threads_runtime_support"]
37profiling = []
38debug = []
39background_threads_runtime_support = []
40background_threads = [ "background_threads_runtime_support" ]
41stats = []
42unprefixed_malloc_on_supported_platforms = []
43disable_initial_exec_tls = []
44disable_cache_oblivious = []
45
46[package.metadata.docs.rs]
47rustdoc-args = [ "--cfg", "jemallocator_docs" ]
48