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:14 -07:00
|
|
|
[[bin]]
|
|
|
|
name = "prettify_markdown_notes"
|
|
|
|
path = "src/prettify_markdown_notes.rs"
|
|
|
|
|
2023-12-23 20:14:05 -07:00
|
|
|
[dependencies]
|
2023-12-23 20:14:14 -07:00
|
|
|
chrono = "0.4.23"
|
2023-12-23 20:14:06 -07:00
|
|
|
clap = { version = "4", features = ["derive"] }
|
2023-12-23 20:14:14 -07:00
|
|
|
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"
|