aboutsummaryrefslogtreecommitdiff
path: root/src/crates/primrose/Cargo.toml
blob: 80dfdaba0e18580fe5cc7cf69627f4b596a2fac8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "primrose"
version = "0.1.0"
authors = ["Xueying Qin <qinxy1995@gmail.com>"]
edition = "2021"

[dependencies]
log = { workspace = true }
env_logger = { workspace = true }

rand = { workspace = true }
thiserror = { workspace = true }
peg = "0.8.0"

primrose-library = { path = "../library" }

[dev-dependencies]
criterion = "0.3.5"

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