mirror of
https://github.com/girlbossceo/jemallocator.git
synced 2024-11-26 07:31:15 +00:00
56559c7fee
* [bench] nallocx cost * [jemalloc-sys] detect jemalloc/configure * [bench] calloc cost * [bench] alloc/dealloc round-trip * [bench] alloc_excess when the excess is used/unused * [jemalloc-sys] detect unsupported targets * [bench] add test::black_box(ptr) on all benches * [bench] realloc * [bench] realloc_excess * [bench] run benchmarks only on x86_64-unknown-linux-gnu * move all benchmarks into one file * remove benchmark build from travis * remove checks in jemalloc-sys/build.rs for missing configure file * docs * fix calloc bench
29 lines
640 B
TOML
29 lines
640 B
TOML
[package]
|
|
name = "jemallocator"
|
|
version = "0.1.4"
|
|
authors = ["Alex Crichton <alex@alexcrichton.com>"]
|
|
license = "MIT/Apache-2.0"
|
|
readme = "README.md"
|
|
keywords = ["allocator"]
|
|
repository = "https://github.com/alexcrichton/jemallocator"
|
|
homepage = "https://github.com/alexcrichton/jemallocator"
|
|
documentation = "https://docs.rs/jemallocator"
|
|
description = """
|
|
A Rust allocator backed by jemalloc
|
|
"""
|
|
|
|
[lib]
|
|
test = false
|
|
bench = false
|
|
|
|
[workspace]
|
|
members = ["systest"]
|
|
|
|
[dependencies]
|
|
jemalloc-sys = { path = "jemalloc-sys", version = "0.1.3" }
|
|
libc = "0.2.8"
|
|
|
|
[features]
|
|
profiling = ["jemalloc-sys/profiling"]
|
|
debug = ["jemalloc-sys/debug"]
|