-
Notifications
You must be signed in to change notification settings - Fork 35
/
Cargo.toml
58 lines (50 loc) · 1.4 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
[package]
name = "shuttle"
version = "0.8.0"
edition = "2021"
license = "Apache-2.0"
description = "A library for testing concurrent Rust code"
repository = "https://github.com/awslabs/shuttle"
keywords = ["concurrency", "lock", "thread", "async"]
categories = ["asynchronous", "concurrency", "development-tools::testing"]
[dependencies]
assoc = "0.1.3"
bitvec = "1.0.1"
cfg-if = "1.0"
generator = "0.8.1"
hex = "0.4.2"
owo-colors = "3.5.0"
rand_core = "0.6.4"
rand = "0.8.5"
rand_pcg = "0.3.1"
scoped-tls = "1.0.0"
smallvec = { version = "1.11.2", features = ["const_new"] }
tracing = { version = "0.1.36", default-features = false, features = ["std"] }
# for annotation only
regex = { version = "1.10.6", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1.0", optional = true }
[dev-dependencies]
criterion = { version = "0.4.0", features = ["html_reports"] }
futures = "0.3.15"
proptest = "1.0.0"
proptest-derive = "0.5.0"
regex = "1.5.5"
tempfile = "3.2.0"
test-log = { version = "0.2.8", default-features = false, features = ["trace"] }
tracing-subscriber = { version = "0.3.9", features = ["env-filter"] }
pin-project = "1.1.3"
[lib]
bench = false
[features]
default = []
annotation = ["dep:serde", "dep:serde_json", "dep:regex"]
[[bench]]
name = "lock"
harness = false
[[bench]]
name = "buffer"
harness = false
[[bench]]
name = "counter"
harness = false