diff options
Diffstat (limited to 'scripts/resc/setwall/Cargo.toml')
-rw-r--r-- | scripts/resc/setwall/Cargo.toml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/resc/setwall/Cargo.toml b/scripts/resc/setwall/Cargo.toml new file mode 100644 index 0000000..61c5fc0 --- /dev/null +++ b/scripts/resc/setwall/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "setwall" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +clap = { version = "4.1.4", features = ["derive"] } +serde = { version = "1.0", features = ["derive"] } +serde_yaml = "0.9" +regex = "1" +rand = "0.8" +dirs = "4" |