jemallocator/jemalloc-sys/Cargo.toml

47 lines
1.3 KiB
TOML
Raw Permalink Normal View History

2016-01-21 01:03:24 +00:00
[package]
name = "jemalloc-sys"
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>",
"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"
license = "MIT/Apache-2.0"
2018-11-07 18:57:11 +00:00
readme = "README.md"
repository = "https://github.com/tikv/jemallocator"
homepage = "https://github.com/tikv/jemallocator"
documentation = "https://docs.rs/jemallocator-sys"
2018-11-07 18:57:11 +00:00
keywords = ["allocator", "jemalloc"]
description = """
Rust FFI bindings to jemalloc
"""
edition = "2018"
2016-01-21 01:03:24 +00:00
2018-11-07 18:57:11 +00:00
[badges]
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" }
[dependencies]
libc = { version = "^0.2.8", default-features = false }
2016-01-21 01:03:24 +00:00
[build-dependencies]
cc = "^1.0.13"
2016-08-07 07:55:49 +00:00
[features]
default = ["background_threads_runtime_support"]
2016-08-07 07:55:49 +00:00
profiling = []
2017-09-26 21:06:56 +00:00
debug = []
background_threads_runtime_support = []
background_threads = [ "background_threads_runtime_support" ]
stats = []
unprefixed_malloc_on_supported_platforms = []
disable_initial_exec_tls = []
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" ]