forked from purpleprotocol/mimalloc_rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (26 loc) · 923 Bytes
/
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
[package]
name = "mimalloc"
version = "0.1.24"
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.20", default-features = false }
[features]
default = ["secure"]
secure = ["libmimalloc-sys/secure"]
override = ["libmimalloc-sys/override"]
local_dynamic_tls = ["libmimalloc-sys/local_dynamic_tls"]