From eecb04dcc4348af5fd9161c4ee92d59f23885924 Mon Sep 17 00:00:00 2001 From: Arjun Satarkar Date: Fri, 2 Jun 2023 00:37:04 +0530 Subject: Add improved CLI (written in Rust) --- hitomezashi_cli/Cargo.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 hitomezashi_cli/Cargo.toml (limited to 'hitomezashi_cli/Cargo.toml') 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" } -- cgit v1.2.3-57-g22cb