rusty-dotfiles/Cargo.toml

18 lines
366 B
TOML
Raw Permalink Normal View History

2024-01-01 12:58:14 +00:00
[package]
name = "rusty-dotfiles"
version = "0.1.0"
edition = "2021"
publish = ["gitea"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.4.12", features = ["derive"] }
2024-01-01 14:59:32 +00:00
copy_dir = "0.1.3"
2024-01-03 15:32:18 +00:00
git2 = "0.18.1"
2024-01-01 12:58:14 +00:00
serde_json = "1.0.108"
[[bin]]
2024-01-01 14:59:32 +00:00
name = "dotfiles"
path = "src/bin/main.rs"