-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 848 Bytes
/
Cargo.toml
File metadata and controls
32 lines (28 loc) · 848 Bytes
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
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
edition = "2024"
rust-version = "1.90"
repository = "https://github.com/daxida/grs"
authors = ["daxida"]
license = "MIT"
[workspace.dependencies]
grs = { path = "crates/grs" }
# Grac-related
aho-corasick = { version = "1.1.3"}
clap = { version = "4.5.23" }
clap_complete = { version = "4.5.50" }
colored = { version = "3.0.0" }
criterion = { version = "0.5.1" }
grac = { git = "https://github.com/daxida/grac" }
itertools = { version = "0.14.0" }
similar = { version = "2.6.0" }
strum = { version = "0.27.0" }
strum_macros = { version = "0.27.0" }
unicode-normalization = { version = "0.1.24" }
serde = { version = "1.0.217" }
# Wasm-related
serde-wasm-bindgen = { version = "0.6.5" }
wasm-bindgen = { version = "0.2" }
web-sys = { version = "0.3", features = ["console"] }