18 lines
289 B
TOML
18 lines
289 B
TOML
[package]
|
|
name = "repo-rs"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[[bin]]
|
|
name = "repo"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.98"
|
|
clap = { version = "4.5.43", features = ["derive"] }
|
|
url = "2.5.4"
|
|
walkdir = "2.5.0"
|
|
|
|
[lints.clippy]
|
|
pedantic = "warn"
|