dotfiles/bin/rewritten_in_rust/Cargo.toml

36 lines
685 B
TOML
Raw Normal View History

2023-12-23 20:14:05 -07:00
[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"
2023-12-23 20:14:05 -07:00
[[bin]]
name = "sway_tree"
path = "src/sway_tree.rs"
2023-12-23 20:14:05 -07:00
[[bin]]
name = "rename_for_unix"
path = "src/rename_for_unix.rs"
2023-12-23 20:14:06 -07:00
[[bin]]
name = "random_password"
path = "src/random_password.rs"
2023-12-23 20:14:21 -07:00
#[[bin]]
#name = "prettify_markdown_notes"
#path = "src/prettify_markdown_notes.rs"
2023-12-23 20:14:05 -07:00
[dependencies]
chrono = "0.4.23"
2023-12-23 20:14:06 -07:00
clap = { version = "4", features = ["derive"] }
lazy_static = "1.4.0"
2023-12-23 20:14:06 -07:00
rand = "0.8"
2023-12-23 20:14:05 -07:00
regex = "1"
2023-12-23 20:14:05 -07:00
termion = "2"