hlctl/Cargo.toml

28 lines
712 B
TOML
Raw Permalink Normal View History

2024-02-29 20:36:38 +00:00
[package]
name = "hlctl"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.79"
clap = { version = "4.4.18", features = ["derive", "cargo"] }
paste = "1.0.14"
serde = { version = "1.0.195", features = ["derive"] }
serde_json = { version = "1.0.113" }
strum = { version = "0.26", features = ["derive"] }
2024-02-29 20:36:38 +00:00
thiserror = "1.0.57"
toml = "0.8.8"
which = "6.0.0"
log = "0.4"
pretty_env_logger = "0.5"
2024-03-01 18:06:52 +00:00
cnx = { git = "https://github.com/mjkillough/cnx.git", rev = "7845d99baa296901171c083db61588a62f9a8b34" }
2024-02-29 20:36:38 +00:00
[dev-dependencies]
pretty_assertions = "1.4.0"
2024-03-01 18:06:52 +00:00
[profile.release]
opt-level = 3
strip = "debuginfo"