17 lines
266 B
TOML
17 lines
266 B
TOML
[package]
|
|
name = "packie-cli"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[[bin]]
|
|
name = "packie"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
clap = { version = "4", features = ["derive"] }
|
|
console = "0.16"
|
|
packie = { path = "../" }
|
|
rust-i18n = "4"
|
|
indicatif = "0.18"
|