-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (34 loc) · 1.22 KB
/
Cargo.toml
File metadata and controls
38 lines (34 loc) · 1.22 KB
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
37
38
[package]
name = "mimalloc-safe"
version = "0.1.57"
authors = [
"Octavian Oncescu <octavonce@gmail.com>",
"Vincent Rouillé <vincent@speedy37.fr>",
"Thom Chiovoloni <chiovolonit@gmail.com>",
"Long Yinan <lynweklm@gmail.com>"
]
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.53", default-features = false }
[features]
asm = ["libmimalloc-sys2/asm"]
default = []
secure = ["libmimalloc-sys2/secure"]
override = ["libmimalloc-sys2/override"]
local_dynamic_tls = ["libmimalloc-sys2/local_dynamic_tls"]
no_thp = ["libmimalloc-sys2/no_thp"]
no_opt_arch = ["libmimalloc-sys2/no_opt_arch"]
extended = ["libmimalloc-sys2/extended"]
skip_collect_on_exit = ["libmimalloc-sys2/skip_collect_on_exit"]
etw = ["libmimalloc-sys2/etw"]
v3 = ["libmimalloc-sys2/v3"]