60 lines
2.0 KiB
TOML
60 lines
2.0 KiB
TOML
[package]
|
|
name = "jemallocator"
|
|
# Make sure to update the version in the README as well:
|
|
version = "0.3.0"
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>",
|
|
"Gonzalo Brito Gadeschi <gonzalobg88@gmail.com>",
|
|
"Simon Sapin <simon.sapin@exyr.org>",
|
|
"Steven Fackler <sfackler@gmail.com>"
|
|
]
|
|
license = "MIT/Apache-2.0"
|
|
readme = "README.md"
|
|
keywords = ["allocator", "jemalloc"]
|
|
categories = ["memory-management", "api-bindings"]
|
|
repository = "https://github.com/alexcrichton/jemallocator"
|
|
homepage = "https://github.com/alexcrichton/jemallocator"
|
|
documentation = "https://docs.rs/jemallocator"
|
|
description = """
|
|
A Rust allocator backed by jemalloc
|
|
"""
|
|
edition = "2015"
|
|
|
|
[badges]
|
|
appveyor = { repository = "alexcrichton/jemallocator" }
|
|
travis-ci = { repository = "alexcrichton/jemallocator" }
|
|
codecov = { repository = "alexcrichton/jemallocator" }
|
|
is-it-maintained-issue-resolution = { repository = "alexcrichton/jemallocator" }
|
|
is-it-maintained-open-issues = { repository = "alexcrichton/jemallocator" }
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
[lib]
|
|
test = false
|
|
bench = false
|
|
|
|
[workspace]
|
|
members = ["systest", "jemallocator-global", "jemalloc-ctl", "jemalloc-sys" ]
|
|
|
|
[dependencies]
|
|
jemalloc-sys = { path = "jemalloc-sys", version = "0.3.0", default-features = false }
|
|
libc = { version = "^0.2.8", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
paste = "0.1"
|
|
jemalloc-ctl = { path = "jemalloc-ctl", version = "0.3.0" }
|
|
|
|
[features]
|
|
default = ["background_threads_runtime_support"]
|
|
alloc_trait = []
|
|
profiling = ["jemalloc-sys/profiling"]
|
|
debug = ["jemalloc-sys/debug"]
|
|
stats = ["jemalloc-sys/stats"]
|
|
background_threads_runtime_support = ["jemalloc-sys/background_threads_runtime_support"]
|
|
background_threads = ["jemalloc-sys/background_threads"]
|
|
unprefixed_malloc_on_supported_platforms = ["jemalloc-sys/unprefixed_malloc_on_supported_platforms"]
|
|
disable_initial_exec_tls = ["jemalloc-sys/disable_initial_exec_tls"]
|
|
|
|
[package.metadata.docs.rs]
|
|
features = [ "alloc_trait" ]
|
|
rustdoc-args = [ "--cfg jemallocator_docs" ]
|