2016-01-21 01:03:24 +00:00
|
|
|
[package]
|
|
|
|
name = "jemallocator"
|
2018-07-04 14:42:29 +00:00
|
|
|
version = "0.1.9"
|
2016-01-21 01:03:24 +00:00
|
|
|
authors = ["Alex Crichton <alex@alexcrichton.com>"]
|
2016-01-21 01:06:21 +00:00
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["allocator"]
|
|
|
|
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"
|
2016-01-21 01:06:21 +00:00
|
|
|
description = """
|
|
|
|
A Rust allocator backed by 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
|
|
|
|
|
|
|
[workspace]
|
|
|
|
members = ["systest"]
|
|
|
|
|
2016-01-21 01:03:24 +00:00
|
|
|
[dependencies]
|
2018-06-23 18:02:52 +00:00
|
|
|
jemalloc-sys = { path = "jemalloc-sys", version = "0.1.6", default-features = false }
|
2017-06-22 19:52:47 +00:00
|
|
|
libc = "0.2.8"
|
2016-08-07 07:55:49 +00:00
|
|
|
|
|
|
|
[features]
|
2018-06-13 14:45:11 +00:00
|
|
|
alloc_trait = []
|
2018-05-22 14:56:01 +00:00
|
|
|
default = ["bg_thread"]
|
2016-08-07 07:55:49 +00:00
|
|
|
profiling = ["jemalloc-sys/profiling"]
|
2017-09-26 21:06:56 +00:00
|
|
|
debug = ["jemalloc-sys/debug"]
|
2018-05-22 14:56:01 +00:00
|
|
|
bg_thread = ["jemalloc-sys/bg_thread"]
|
2018-06-24 22:28:00 +00:00
|
|
|
unprefixed_malloc_on_supported_platforms = ["jemalloc-sys/unprefixed_malloc_on_supported_platforms"]
|