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