-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (43 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
47 lines (43 loc) · 1.13 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
39
40
41
42
43
44
45
46
47
[package]
name = "libmimalloc-sys"
version = "0.1.45"
authors = ["Octavian Oncescu <octavonce@gmail.com>"]
edition = "2024"
repository = "https://github.com/purpleprotocol/mimalloc_rust/tree/master/libmimalloc-sys"
keywords = ["allocator", "encrypted-heap", "performance"]
categories = ["memory-management", "api-bindings"]
description = "Sys crate wrapping the mimalloc allocator"
license = "MIT"
links = "mimalloc"
exclude = [
"/c_src/mimalloc/v2/bin",
"/c_src/mimalloc/v2/cmake",
"/c_src/mimalloc/v2/doc",
"/c_src/mimalloc/v2/docs",
"/c_src/mimalloc/v2/ide",
"/c_src/mimalloc/v2/test",
"/c_src/mimalloc/v3/bin",
"/c_src/mimalloc/v3/cmake",
"/c_src/mimalloc/v3/doc",
"/c_src/mimalloc/v3/docs",
"/c_src/mimalloc/v3/ide",
"/c_src/mimalloc/v3/test",
]
[dependencies]
cty = { version = "0.2", optional = true }
libc = "0.2"
[build-dependencies]
cc = "1.2"
[features]
secure = []
debug = []
debug_in_debug = []
override = []
extended = ["cty"]
arena = []
local_dynamic_tls = []
no_thp = []
v3 = []
# Show `extended` on docs.rs since it's the full API surface.
[package.metadata.docs.rs]
features = ["extended"]