mirror of
https://github.com/xavo95/repak.git
synced 2025-01-18 19:04:07 +00:00
20 lines
442 B
TOML
20 lines
442 B
TOML
[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"] }
|
|
path-clean = "0.1.0"
|
|
rayon = "1.6.1"
|
|
repak = { version = "0.1.0", path = "../repak" }
|
|
strum = { workspace = true }
|