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"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
aes = { workspace = true }
|
|
|
|
base64 = { workspace = true }
|
|
|
|
clap = { version = "4.1.4", features = ["derive"] }
|
2023-04-08 02:42:14 +00:00
|
|
|
hex = "0.4.3"
|
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"
|
2023-02-23 19:49:39 +00:00
|
|
|
path-slash = "0.2.1"
|
2023-02-08 02:54:04 +00:00
|
|
|
rayon = "1.6.1"
|
2023-02-08 04:58:41 +00:00
|
|
|
repak = { version = "0.1.1", path = "../repak" }
|
2023-02-08 04:21:09 +00:00
|
|
|
strum = { workspace = true }
|