-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
63 lines (51 loc) · 1.26 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
[package]
name = "immix"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
int-enum = "0.5"
libc = "0.2"
parking_lot = "0.12"
rustc-hash = "1.1"
lazy_static = "1.4"
backtrace = "0.3"
log = "0.4"
threadpool = {version = "1.8"}
sys-info = {git="https://github.com/Pivot-Studio/sys-info-rs.git"}
once_cell = "1.20.2"
crossbeam-deque = {git = "https://github.com/Pivot-Studio/crossbeam.git"}
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["winuser","memoryapi"] }
[dev-dependencies]
rand = "0.8"
criterion = "0.4"
[[bench]]
name = "immix_bench"
harness = false
[[bench]]
name = "immix_stress_bench"
harness = false
[features]
default = ["madv_dontneed", "auto_gc", "llvm_stackmap", "c-api", "conservative_stack_scan", "llvm_gc_plugin_lib", "llvm_gc_plugin"]
madv_free = []
c-api = []
madv_dontneed = []
zero_init = []
shadow_stack = []
llvm_stackmap = []
llvm_gc_plugin = ["llvm_gc_plugin_lib"]
llvm_gc_plugin_lib = []
auto_gc = []
conservative_stack_scan = []
gc_profile = []
[build-dependencies]
cmake = "0.1"
lazy_static = "1.0"
regex = "1.0"
semver = "1.0"
[lib]
bench = false
doctest = false
name = "immix"
crate-type = ["staticlib", "lib", "cdylib"]