2016-01-21 01:03:24 +00:00
|
|
|
[package]
|
|
|
|
name = "jemalloc-sys"
|
2018-10-30 22:37:28 +00:00
|
|
|
version = "0.2.0"
|
2016-01-21 01:03:24 +00:00
|
|
|
authors = ["Alex Crichton <alex@alexcrichton.com>"]
|
|
|
|
build = "build.rs"
|
|
|
|
links = "jemalloc"
|
2016-01-21 01:18:18 +00:00
|
|
|
license = "MIT/Apache-2.0"
|
2018-10-20 19:54:21 +00:00
|
|
|
readme = "readme.md"
|
2016-01-21 01:18:18 +00:00
|
|
|
repository = "https://github.com/alexcrichton/jemallocator"
|
|
|
|
homepage = "https://github.com/alexcrichton/jemallocator"
|
2017-05-30 04:58:12 +00:00
|
|
|
documentation = "https://docs.rs/jemallocator-sys"
|
2018-07-12 10:51:07 +00:00
|
|
|
keywords = ["allocator"]
|
2016-01-21 01:18:18 +00:00
|
|
|
description = """
|
|
|
|
Rust FFI bindings to jemalloc
|
|
|
|
"""
|
2016-01-21 01:03:24 +00:00
|
|
|
|
2017-05-30 04:58:12 +00:00
|
|
|
[lib]
|
|
|
|
test = false
|
2017-11-27 18:07:57 +00:00
|
|
|
bench = false
|
2017-05-30 04:58:12 +00:00
|
|
|
|
2016-01-21 01:18:18 +00:00
|
|
|
[dependencies]
|
2017-06-22 19:52:47 +00:00
|
|
|
libc = "0.2.8"
|
2016-01-21 01:03:24 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2018-05-02 08:04:09 +00:00
|
|
|
cc = "^1.0.13"
|
2018-05-04 14:46:30 +00:00
|
|
|
fs_extra = "^1.1"
|
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 = []
|
2018-11-05 19:15:59 +00:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
rustdoc-args = [ "--cfg jemallocator_docs" ]
|