forked from purpleprotocol/mimalloc_rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (30 loc) · 1.05 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "mimalloc"
version = "0.1.43"
authors = [
"Octavian Oncescu <[email protected]>",
"Vincent Rouillé <[email protected]>",
"Thom Chiovoloni <[email protected]>",
]
edition = "2018"
repository = "https://github.com/purpleprotocol/mimalloc_rust"
keywords = ["mimalloc", "allocator", "encrypted-heap", "performance"]
categories = ["memory-management", "api-bindings"]
description = "Performance and security oriented drop-in allocator"
license = "MIT"
readme = "README.md"
[workspace]
members = ["libmimalloc-sys", "libmimalloc-sys/sys-test"]
[badges]
travis-ci = { repository = "purpleprotocol/mimalloc_rust" }
[dependencies]
libmimalloc-sys = { path = "libmimalloc-sys", version = "0.1.39", default-features = false }
[features]
default = []
secure = ["libmimalloc-sys/secure"]
override = ["libmimalloc-sys/override"]
debug = ["libmimalloc-sys/debug"]
debug_in_debug = ["libmimalloc-sys/debug_in_debug"]
local_dynamic_tls = ["libmimalloc-sys/local_dynamic_tls"]
no_thp = ["libmimalloc-sys/no_thp"]
extended = ["libmimalloc-sys/extended"]