2016-01-21 01:03:24 +00:00
|
|
|
[package]
|
2022-04-29 08:06:09 +00:00
|
|
|
name = "jemalloc-sys"
|
2023-07-27 05:59:08 +00:00
|
|
|
version = "0.5.4+5.3.0-patched"
|
2018-11-07 18:57:11 +00:00
|
|
|
authors = [
|
|
|
|
"Alex Crichton <alex@alexcrichton.com>",
|
|
|
|
"Gonzalo Brito Gadeschi <gonzalobg88@gmail.com>",
|
2020-07-21 11:33:59 +00:00
|
|
|
"The TiKV Project Developers",
|
2018-11-07 18:57:11 +00:00
|
|
|
]
|
2016-01-21 01:03:24 +00:00
|
|
|
build = "build.rs"
|
|
|
|
links = "jemalloc"
|
2016-01-21 01:18:18 +00:00
|
|
|
license = "MIT/Apache-2.0"
|
2018-11-07 18:57:11 +00:00
|
|
|
readme = "README.md"
|
2020-07-21 11:33:59 +00:00
|
|
|
repository = "https://github.com/tikv/jemallocator"
|
|
|
|
homepage = "https://github.com/tikv/jemallocator"
|
2022-04-29 08:06:09 +00:00
|
|
|
documentation = "https://docs.rs/jemallocator-sys"
|
2018-11-07 18:57:11 +00:00
|
|
|
keywords = ["allocator", "jemalloc"]
|
2016-01-21 01:18:18 +00:00
|
|
|
description = """
|
|
|
|
Rust FFI bindings to jemalloc
|
|
|
|
"""
|
2020-07-21 11:33:59 +00:00
|
|
|
edition = "2018"
|
2016-01-21 01:03:24 +00:00
|
|
|
|
2018-11-07 18:57:11 +00:00
|
|
|
[badges]
|
2020-07-21 11:33:59 +00:00
|
|
|
codecov = { repository = "tikv/jemallocator" }
|
|
|
|
is-it-maintained-issue-resolution = { repository = "tikv/jemallocator" }
|
|
|
|
is-it-maintained-open-issues = { repository = "tikv/jemallocator" }
|
2018-11-07 18:57:11 +00:00
|
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
|
2016-01-21 01:18:18 +00:00
|
|
|
[dependencies]
|
2018-11-06 16:56:07 +00:00
|
|
|
libc = { version = "^0.2.8", default-features = false }
|
2016-01-21 01:03:24 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2018-05-02 08:04:09 +00:00
|
|
|
cc = "^1.0.13"
|
2016-08-07 07:55:49 +00:00
|
|
|
|
|
|
|
[features]
|
2018-10-24 13:00:40 +00:00
|
|
|
default = ["background_threads_runtime_support"]
|
2016-08-07 07:55:49 +00:00
|
|
|
profiling = []
|
2017-09-26 21:06:56 +00:00
|
|
|
debug = []
|
2018-10-24 13:00:40 +00:00
|
|
|
background_threads_runtime_support = []
|
|
|
|
background_threads = [ "background_threads_runtime_support" ]
|
2018-07-12 10:51:07 +00:00
|
|
|
stats = []
|
2018-06-24 22:28:00 +00:00
|
|
|
unprefixed_malloc_on_supported_platforms = []
|
2019-03-19 22:28:36 +00:00
|
|
|
disable_initial_exec_tls = []
|
2023-04-18 06:51:21 +00:00
|
|
|
disable_cache_oblivious = []
|
2018-11-05 19:15:59 +00:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
2019-06-14 10:13:01 +00:00
|
|
|
rustdoc-args = [ "--cfg", "jemallocator_docs" ]
|