2018-11-07 18:57:11 +00:00
|
|
|
[package]
|
2022-04-29 08:06:09 +00:00
|
|
|
name = "jemalloc-ctl"
|
2023-07-27 05:59:08 +00:00
|
|
|
version = "0.5.4"
|
2018-11-09 09:26:57 +00:00
|
|
|
authors = [
|
|
|
|
"Steven Fackler <sfackler@gmail.com>",
|
2020-07-21 11:33:59 +00:00
|
|
|
"Gonzalo Brito Gadeschi <gonzalobg88@gmail.com>",
|
|
|
|
"The TiKV Project Developers",
|
2018-11-09 09:26:57 +00:00
|
|
|
]
|
2018-11-07 18:57:11 +00:00
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
readme = "README.md"
|
|
|
|
categories = ["memory-management", "api-bindings", "development-tools" ]
|
|
|
|
keywords = ["allocator", "jemalloc"]
|
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/jemalloc-ctl"
|
2018-11-07 18:57:11 +00:00
|
|
|
description = """
|
|
|
|
A safe wrapper over jemalloc's control and introspection APIs
|
|
|
|
"""
|
2020-07-21 11:33:59 +00:00
|
|
|
edition = "2018"
|
2018-11-07 18:57:11 +00:00
|
|
|
|
|
|
|
[badges]
|
2020-07-21 11:33:59 +00:00
|
|
|
travis-ci = { repository = "tikv/jemallocator" }
|
|
|
|
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]
|
2022-05-24 23:31:42 +00:00
|
|
|
jemalloc-sys = { path = "../jemalloc-sys", version = "0.5.0" }
|
2018-11-07 18:57:11 +00:00
|
|
|
libc = { version = "0.2", default-features = false }
|
2021-08-05 14:58:15 +00:00
|
|
|
paste = "1"
|
2018-11-07 18:57:11 +00:00
|
|
|
|
2019-03-20 10:13:45 +00:00
|
|
|
[dev-dependencies]
|
2022-05-24 23:31:42 +00:00
|
|
|
jemallocator = { path = "../jemallocator", version = "0.5.0" }
|
2018-11-07 18:57:11 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
use_std = [ "libc/use_std" ]
|
2023-07-27 16:17:23 +00:00
|
|
|
disable_initial_exec_tls = ["jemalloc-sys/disable_initial_exec_tls"]
|
2018-11-07 18:57:11 +00:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
2020-11-16 13:10:34 +00:00
|
|
|
rustdoc-args = [ "--cfg", "jemallocator_docs" ]
|