-
Notifications
You must be signed in to change notification settings - Fork 48
/
Cargo.toml
44 lines (39 loc) · 1.02 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
[package]
name = "mpz-common"
version = "0.1.0"
edition = "2021"
[features]
default = ["sync"]
sync = ["tokio/sync"]
test-utils = ["uid-mux/test-utils"]
ideal = []
rayon = ["dep:rayon"]
force-st = []
[dependencies]
mpz-core.workspace = true
futures.workspace = true
async-trait.workspace = true
pin-project-lite.workspace = true
scoped-futures.workspace = true
thiserror.workspace = true
serio.workspace = true
uid-mux.workspace = true
serde = { workspace = true, features = ["derive"] }
pollster.workspace = true
rayon = { workspace = true, optional = true }
cfg-if.workspace = true
tokio = { workspace = true, optional = true }
[dev-dependencies]
tokio = { workspace = true, features = [
"io-util",
"macros",
"rt-multi-thread",
] }
tokio-util = { workspace = true, features = ["compat"] }
uid-mux = { workspace = true, features = ["test-utils"] }
tracing-subscriber = { workspace = true, features = ["fmt"] }
criterion.workspace = true
[[bench]]
name = "context"
harness = false
required-features = ["test-utils", "rayon"]