aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorMikkel Thestrup <mikkel@mithe.dk>2026-02-03 20:08:15 +0100
committerMikkel Thestrup <mikkel@mithe.dk>2026-02-03 20:08:15 +0100
commit40d6925f3b6b9f9d585e48002bd26850b0c8efaf (patch)
tree4febb869bf2b43b747c3265035783e3018bd5553 /Cargo.toml
parent8e71a6c456898b86cd6be599dcb42241b3d3c44a (diff)
downloadkal-40d6925f3b6b9f9d585e48002bd26850b0c8efaf.tar.gz
kal-40d6925f3b6b9f9d585e48002bd26850b0c8efaf.zip
build: Added Cargo.toml, lock and lib.rs files
Diffstat (limited to '')
-rw-r--r--Cargo.toml21
1 files changed, 21 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..0ca394a
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,21 @@
+[package]
+name = "kal"
+version = "0.1.0"
+edition = "2024"
+
+[dependencies]
+clap = { version = "4.5.50", features = ["derive"] }
+clap_complete = "4.5.65"
+clap_mangen = "0.2.31"
+getset = "0.1.6"
+sqlx = { version = "0.8.6", features = [
+ "sqlite",
+ "uuid",
+ "chrono",
+] }
+thiserror = "2.0.17"
+uuid = { version = "1.18.1", features = ["v4", "v5"] }
+async-trait = "0.1.89"
+chrono = "0.4.42"
+colored = "3.1.1"
+dirs = "6.0.0"