1[package] 2name = "tikv-jemalloc-sys" 3version = "0.5.4+5.3.0-patched" 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" 21 22[badges] 23codecov = { repository = "tikv/jemallocator" } 24is-it-maintained-issue-resolution = { repository = "tikv/jemallocator" } 25is-it-maintained-open-issues = { repository = "tikv/jemallocator" } 26maintenance = { status = "actively-developed" } 27 28[dependencies] 29libc = { version = "^0.2.8", default-features = false } 30 31[build-dependencies] 32cc = "^1.0.13" 33 34[features] 35default = ["background_threads_runtime_support"] 36profiling = [] 37debug = [] 38background_threads_runtime_support = [] 39background_threads = [ "background_threads_runtime_support" ] 40stats = [] 41unprefixed_malloc_on_supported_platforms = [] 42disable_initial_exec_tls = [] 43disable_cache_oblivious = [] 44 45[package.metadata.docs.rs] 46rustdoc-args = [ "--cfg", "jemallocator_docs" ] 47