-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
42 lines (38 loc) · 950 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
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "numanji"
version = "0.1.6-alpha.0"
description = "Local-affinity first NUMA-aware allocator with optional fallback"
authors = ["Mahmut Bulut <[email protected]>"]
keywords = ["numa", "numa-aware", "allocator", "memory"]
categories = ["memory-management", "caching"]
homepage = "https://github.com/bastion-rs/numanji"
repository = "https://github.com/bastion-rs/numanji"
documentation = "https://docs.rs/numanji"
edition = "2018"
readme = "README.md"
license = "Apache-2.0/MIT"
exclude = [
".github/*",
"examples/*",
"graphstore/*",
"tests/*",
"img/*",
"ci/*",
"benches/*",
"doc/*",
"*.png",
"*.dot",
"*.yml",
"*.toml",
"*.md"
]
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
lazy_static = "^1.4"
allocator-suite = "0.1.6"
[target.'cfg(not(any(target_os = "android", target_os = "linux")))'.dependencies]
jemallocator = "^0.3"
[dev-dependencies]
# long_cons_then_map bench
rand = "0.7"