-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 796 Bytes
/
Cargo.toml
File metadata and controls
28 lines (24 loc) · 796 Bytes
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
[package]
name = "mimalloc"
version = "0.1.17"
authors = [
"Octavian Oncescu <octavonce@gmail.com>",
"Vincent Rouillé <vincent@speedy37.fr>",
]
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" ]
[badges]
travis-ci = { repository = "purpleprotocol/mimalloc_rust" }
[dependencies]
libmimalloc-sys = { path = "libmimalloc-sys", version = "0.1.13" }
[features]
default = ["secure"]
secure = ["libmimalloc-sys/secure"]
secure-full = ["libmimalloc-sys/secure", "libmimalloc-sys/secure-full"]