-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (31 loc) · 1.11 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
35
36
[package]
name = "mimalloc-safe"
version = "0.1.50"
authors = [
"Octavian Oncescu <[email protected]>",
"Vincent Rouillé <[email protected]>",
"Thom Chiovoloni <[email protected]>",
"Long Yinan <[email protected]>"
]
edition = "2021"
repository = "https://github.com/napi-rs/mimalloc-safe"
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", "example"]
[badges]
travis-ci = { repository = "purpleprotocol/mimalloc_rust" }
[dependencies]
libmimalloc-sys2 = { path = "libmimalloc-sys", version = "0.1.46", default-features = false }
[features]
default = []
secure = ["libmimalloc-sys2/secure"]
override = ["libmimalloc-sys2/override"]
local_dynamic_tls = ["libmimalloc-sys2/local_dynamic_tls"]
no_thp = ["libmimalloc-sys2/no_thp"]
extended = ["libmimalloc-sys2/extended"]
skip_collect_on_exit = ["libmimalloc-sys2/skip_collect_on_exit"]
etw = ["libmimalloc-sys2/etw"]