17 lines
391 B
TOML
17 lines
391 B
TOML
|
[package]
|
||
|
name = "fuga"
|
||
|
version = "0.0.0"
|
||
|
authors.workspace = true
|
||
|
edition.workspace = true
|
||
|
homepage.workspace = true
|
||
|
repository.workspace = true
|
||
|
license.workspace = true
|
||
|
|
||
|
[[bin]]
|
||
|
name = "fuga"
|
||
|
path = "src/bin/fuga.rs"
|
||
|
|
||
|
[dependencies]
|
||
|
clap = { version = "4.5.21", features = ["derive", "wrap_help"] }
|
||
|
log = { version = "0.4.22", features = ["std"] }
|