aboutsummaryrefslogtreecommitdiff
path: root/hittekaart-cli/Cargo.toml
diff options
context:
space:
mode:
authorDaniel Schadt <kingdread@gmx.de>2025-06-26 22:10:31 +0200
committerDaniel Schadt <kingdread@gmx.de>2025-06-26 22:10:31 +0200
commit99150875308e0cac89f4de2996cfd1954305dcfe (patch)
treef19224064543aed367522b05778a992d7385c712 /hittekaart-cli/Cargo.toml
parent6adcd94a6747fe7ec6f1ad1073453636847a0bff (diff)
downloadhittekaart-py.tar.gz
hittekaart-py.tar.bz2
hittekaart-py.zip
split crate into core and clipy
Diffstat (limited to 'hittekaart-cli/Cargo.toml')
-rw-r--r--hittekaart-cli/Cargo.toml16
1 files changed, 16 insertions, 0 deletions
diff --git a/hittekaart-cli/Cargo.toml b/hittekaart-cli/Cargo.toml
new file mode 100644
index 0000000..1962b87
--- /dev/null
+++ b/hittekaart-cli/Cargo.toml
@@ -0,0 +1,16 @@
+[package]
+name = "hittekaart-cli"
+version = "0.1.0"
+edition = "2024"
+
+[[bin]]
+path = "src/main.rs"
+name = "hittekaart"
+
+[dependencies]
+hittekaart = { path = "../hittekaart" }
+clap = { version = "4.2.7", features = ["derive"] }
+color-eyre = "0.6.2"
+indicatif = "0.17.3"
+is-terminal = "0.4.7"
+rayon = "1.10.0"