-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
38 lines (34 loc) · 1.06 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
[workspace]
# Try
# require version 2 to avoid "feature" additiveness for dev-dependencies
# https://doc.rust-lang.org/cargo/reference/resolver.html#feature-resolver-version-2
resolver = "2"
members = [
"crates/*",
"xtask",
]
[workspace.package]
edition = "2021"
version = "1.1.6"
license = "MIT OR Apache-2.0"
readme = "README.md"
[workspace.dependencies]
anyhow = "1.0.86"
clap = { version = "4.5.9", features = ["derive"] }
derive_more = { version = "0.99.18", features = ["display"], default-features = false }
dotenv = "0.15.0"
env_logger = "0.11.3"
log = { version = "0.4.22" }
proc-macro2 = "1.0.86"
quote = "1.0.36"
rand = { version = "0.8.5" }
regex = "1.10.5"
rstest = "0.21.0"
serde = { version = "1.0.200", features = ["derive"] }
serde_json = "1.0.116"
strum = {version = "0.26.3", features = ["derive"]}
syn = {version = "~2.0" , features = ["full"]}
tracing = { version = "0.1.40", features = ["log"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "registry"] }
[profile.dev]
debug = 0 # Speed up compilation time and not necessary.