aboutsummaryrefslogtreecommitdiff
path: root/incria/Cargo.toml
blob: db0df0160a96f9e10e4ed2173c71eb45b5c540ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "incria"
version = "0.1.0"
edition = "2021"

[dependencies]
blink-alloc = { version = "0.3.0", features = ["sync"] }
tokio = { version = "1.28.1", features = ["sync", "rt"] }
tracing = { version = "0.1" }

[dev-dependencies]
tokio = { version = "1.28.1", features = ["macros", "sync", "rt-multi-thread"] }
criterion = { version = "0.4", features = ["async_tokio"] }

[[test]]
name = "pascal"
path = "benches/pascal.rs"

[[bench]]
name = "pascal"
harness = false