dotfiles/bin/rewritten_in_rust/Cargo.toml

26 lines
496 B
TOML

[package]
name = "config_scripts"
version = "0.1.0"
edition = "2021"
authors = ["Akemi Izuko"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "prettify_bash_history"
path = "src/prettify_bash_history.rs"
[[bin]]
name = "sway_tree"
path = "src/sway_tree.rs"
[[bin]]
name = "rename_for_unix"
path = "src/rename_for_unix.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
chrono = "0.4"
regex = "1"
termion = "2"