jemallocator/jemalloc-ctl/Cargo.toml

40 lines
1.2 KiB
TOML
Raw Permalink Normal View History

2018-11-07 18:57:11 +00:00
[package]
name = "jemalloc-ctl"
version = "0.3.0"
2018-11-09 09:26:57 +00:00
authors = [
"Steven Fackler <sfackler@gmail.com>",
"Gonzalo Brito Gadeschi <gonzalobg88@gmail.com>"
]
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"]
2019-04-05 14:19:10 +00:00
repository = "https://github.com/gnzlbg/jemallocator"
homepage = "https://github.com/gnzlbg/jemallocator"
2018-11-07 18:57:11 +00:00
documentation = "https://docs.rs/jemalloc-ctl"
description = """
A safe wrapper over jemalloc's control and introspection APIs
"""
[badges]
2019-04-05 14:19:10 +00:00
appveyor = { repository = "gnzlbg/jemallocator" }
travis-ci = { repository = "gnzlbg/jemallocator" }
codecov = { repository = "gnzlbg/jemallocator" }
is-it-maintained-issue-resolution = { repository = "gnzlbg/jemallocator" }
is-it-maintained-open-issues = { repository = "gnzlbg/jemallocator" }
2018-11-07 18:57:11 +00:00
maintenance = { status = "actively-developed" }
[dependencies]
jemalloc-sys = { path = "../jemalloc-sys", version = "0.3.0" }
libc = { version = "0.2", default-features = false }
paste = { version = "0.1" }
2018-11-07 18:57:11 +00:00
2019-03-20 10:13:45 +00:00
[dev-dependencies]
jemallocator = { path = "..", version = "0.3.0" }
2018-11-07 18:57:11 +00:00
[features]
default = []
use_std = [ "libc/use_std" ]
[package.metadata.docs.rs]
rustdoc-args = [ "--cfg jemallocator_docs" ]