[package]
edition = "2018"
name = "better_mimalloc_rs"
version = "0.1.1"
authors = [
"Octavian Oncescu <octavonce@gmail.com>",
"Vincent Rouillé <vincent@speedy37.fr>",
"Thom Chiovoloni <chiovolonit@gmail.com>",
]
build = "build.rs"
exclude = [
"/libmimalloc-sys/c_src/mimalloc/bin",
"/libmimalloc-sys/c_src/mimalloc/cmake",
"/libmimalloc-sys/c_src/mimalloc/contrib",
"/libmimalloc-sys/c_src/mimalloc/doc",
"/libmimalloc-sys/c_src/mimalloc/docs",
"/libmimalloc-sys/c_src/mimalloc/ide",
"/libmimalloc-sys/c_src/mimalloc/test",
"/libmimalloc-sys/c_src/mimalloc/.git",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A mimalloc wrapper that exposes tuning knobs and tracks the dev branch"
homepage = "https://github.com/acking-you/better_mimalloc_rs"
documentation = "https://docs.rs/better_mimalloc_rs"
readme = "README.md"
keywords = [
"mimalloc",
"allocator",
"rss",
"tuning",
"performance",
]
categories = [
"memory-management",
"api-bindings",
]
license = "MIT"
repository = "https://github.com/acking-you/better_mimalloc_rs"
[features]
config = ["extended"]
debug = ["better_mimalloc_sys/debug"]
debug_in_debug = ["better_mimalloc_sys/debug_in_debug"]
default = []
extended = ["better_mimalloc_sys/extended"]
local_dynamic_tls = ["better_mimalloc_sys/local_dynamic_tls"]
no_thp = ["better_mimalloc_sys/no_thp"]
override = ["better_mimalloc_sys/override"]
secure = ["better_mimalloc_sys/secure"]
[lib]
name = "better_mimalloc_rs"
path = "src/lib.rs"
[dependencies.better_mimalloc_sys]
version = "0.1.1"
default-features = false
package = "better_mimalloc_sys"