-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (25 loc) · 820 Bytes
/
Cargo.toml
File metadata and controls
30 lines (25 loc) · 820 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
[package]
name = "cmjava"
version = "0.1.0"
edition = "2021"
build = "build.rs"
default-run = "cmjava"
[profile.release]
overflow-checks = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
clap = { version = "4.4.7", features = ["cargo", "derive"] }
thiserror = "1.0.50"
tracing = "0.1.40"
tracing-error = "0.2.0"
tracing-subscriber = { version = "0.3.17", features = ["time", "env-filter"] }
tracing-unwrap = { version = "0.10.0", features = ["log-location"] }
nom = "7.1.3"
strum = { version = "0.25.0", features = ["derive"] }
enumflags2 = "0.7.8"
[build-dependencies]
vergen = { version = "8.2.5", features = ["build", "cargo", "git", "rustc", "si", "gitoxide"] }
[dev-dependencies]
assert_cmd = "2.0.12"
predicates = "3.0.4"