diff options
author | Julian T <julian@jtle.dk> | 2023-02-06 20:50:11 +0100 |
---|---|---|
committer | Julian T <julian@jtle.dk> | 2023-02-06 21:33:55 +0100 |
commit | 265b3b7b976732ab00e57aa064f06857b547b2b0 (patch) | |
tree | a298676cf535cadd5602d8aefa110abd3687e996 /scripts/resc/setwall/Cargo.toml | |
parent | e9d6b42be25ac756a7cc9c44e1a34b78919dfec2 (diff) |
Create new setwall script in rust
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" |