-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
62 lines (54 loc) · 1.1 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
[package]
name = "rsgc"
version = "1.1.0"
edition = "2021"
authors = ["Adel Prokurov <[email protected]>"]
description = "Concurrent GC library for Rust"
license = "BSD-2-Clause"
readme = "README.md"
repository = "https://github.com/playxe/rsgc"
keywords = ["gc", "concurrent"]
[dependencies]
libc = "0.2"
cfg-if = "1.0"
parking_lot = "0.12"
parking_lot_core = "0.9"
log = "0.4"
thread_local = "1.1"
num-traits = "0.2"
rand = "0.8"
once_cell = "1"
env_logger = "0.10"
num_cpus = "1.13"
scoped-thread-pool = "1.0"
errno = "0.3"
paste = "1.0"
crossbeam-deque = "0.8"
crossbeam-queue = "0.3"
atomic = "0.5"
error-code = "2.3"
[dependencies.memoffset]
version = "0.9"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = [
"memoryapi",
"winnt",
"sysinfoapi",
"minwinbase",
"errhandlingapi",
"excpt",
"minwindef",
] }
[features]
conditional-safepoint = []
gc-satb = []
gc-incremental-update = []
gc-passive = []
default = ["gc-satb"]
[profile.release]
lto = true
strip = true
codegen-units = 1
[lib]
name = "rsgc"
crate-type = ["cdylib", "rlib", "staticlib"]