-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
84 lines (65 loc) · 1.62 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[package]
name = "apfmalloc-lib"
description = "An implementation of (LRMalloc)[https://github.com/ricleite/lrmalloc], but improved with APF tuning (Li et. al., 2019)"
version = "0.2.1"
authors = ["Joshua Radin <[email protected]>",
"Elias Neuman-Donihue <[email protected]>"]
edition = "2018"
license-file = "LICENSE"
readme = "README.md"
keywords = ["memory", "allocation"]
repository = "https://github.com/JoshuaRadin37/apfmalloc"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
track_allocation = []
no_met_stack = []
show_records = ["gnuplot"]
[workspace]
members = [
"apfmalloc",
"benchmarking-tools"
]
[profile.test]
opt-level = 0
[profile.bench]
opt-level = 0
[profile.release]
opt-level = 3
[dependencies]
bitfield = "0.13.2"
crossbeam = "0.7.3"
memmap = "0.7.0"
libc = "0.2.71"
atomic = "0.4.5"
spin = "0.5.2"
thread_local = "1.0.1"
errno = "0.2.5"
lazy_static = "1.4.0"
gnuplot = { version = "^0.0.37", optional = true }
[lib]
bench = false
# Windows Dependencies
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.8", features=["std", "winuser", "heapapi", "ntdef", "winnt", "winerror", "memoryapi"] }
# Benchmark Dependencies
[dev-dependencies]
criterion = "0.3"
benchmarking-tools = { path = "benchmarking-tools"}
rand = "0.7.3"
# Show Records depencdency
[[bench]]
name = "allocating_bench"
harness = false
[[bench]]
name = "function_benches"
harness = false
[[bench]]
name = "timed_allocation"
harness = false
[[bench]]
name = "multiple_threads"
harness = false
[[bench]]
name = "apf_benches"
harness = false