-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
44 lines (37 loc) · 970 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
43
44
[package]
name = "shredder"
description = "Garbage collection as a library for Rust"
categories = ["memory-management"]
keywords = ["gc", "garbage", "collection", "garbage-collection"]
authors = ["Gregor Peach <gregorpeach@gmail.com>"]
repository = "https://github.com/Others/shredder"
readme = "README.md"
license = "MIT"
version = "0.2.1-dev"
edition = "2018"
[dependencies]
arc-swap = "1.4"
crossbeam = "0.8.1"
dynqueue = { version = "0.3.0", features = ["crossbeam-queue"] }
log = "0.4.14"
once_cell = "1.8"
parking_lot = "0.11.2"
rayon = "1.5"
rental = "0.5.6"
shredder_derive = "0.2.0"
#shredder_derive = { git = "https://github.com/Others/shredder_derive.git" }
#shredder_derive = { path = "../shredder_derive" }
stable_deref_trait = "1.2"
#[profile.release]
#debug = true
[features]
default = []
nightly-features = []
[dev-dependencies]
criterion = "0.3"
paste = "1.0"
rand = "0.8.3"
trybuild = "1.0"
[[bench]]
name = "shredder_benchmark"
harness = false