diff options
author | Arjun Satarkar <me@arjunsatarkar.net> | 2023-06-01 19:07:04 +0000 |
---|---|---|
committer | Arjun Satarkar <me@arjunsatarkar.net> | 2023-06-01 19:07:04 +0000 |
commit | eecb04dcc4348af5fd9161c4ee92d59f23885924 (patch) | |
tree | caddab9b8d38be14edb74d63b6ad7d585dad13bd /hitomezashi_cli/Cargo.toml | |
parent | 3a2fef94230f35d948634ffef83660afdffa0bad (diff) | |
download | hitomezashi-eecb04dcc4348af5fd9161c4ee92d59f23885924.tar hitomezashi-eecb04dcc4348af5fd9161c4ee92d59f23885924.tar.gz hitomezashi-eecb04dcc4348af5fd9161c4ee92d59f23885924.zip |
Add improved CLI (written in Rust)
Diffstat (limited to 'hitomezashi_cli/Cargo.toml')
-rw-r--r-- | hitomezashi_cli/Cargo.toml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/hitomezashi_cli/Cargo.toml b/hitomezashi_cli/Cargo.toml new file mode 100644 index 0000000..a95192f --- /dev/null +++ b/hitomezashi_cli/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "hitomezashi_cli" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +bitvec = "1.0.1" +clap = { version = "4.3.0", features = ["derive"] } +csscolorparser = "0.6.2" +image = "0.24.6" +libhitomezashi = { version = "0.1.0", path = "../libhitomezashi" } |