repak/repak_cli/Cargo.toml

29 lines
676 B
TOML
Raw Normal View History

2023-02-01 23:44:57 +00:00
[package]
name = "repak_cli"
repository.workspace = true
authors.workspace = true
license.workspace = true
version.workspace = true
edition.workspace = true
[[bin]]
name = "repak"
path = "src/main.rs"
[target.'cfg(windows)'.dependencies]
repak = { path = "../repak", features = ["oodle"] }
[target.'cfg(not(windows))'.dependencies]
repak = { path = "../repak" }
2023-02-01 23:44:57 +00:00
[dependencies]
aes = { workspace = true }
base64 = { workspace = true }
clap = { version = "4.1.4", features = ["derive"] }
2023-04-13 07:01:19 +00:00
hex = { workspace = true }
2023-02-23 22:49:35 +00:00
indicatif = { version = "0.17.3", features = ["rayon"] }
2023-02-01 23:44:57 +00:00
path-clean = "0.1.0"
path-slash = "0.2.1"
rayon = "1.6.1"
sha2 = "0.10.7"
strum = { workspace = true }