summaryrefslogtreecommitdiff
path: root/makima/daemon/Cargo.toml
diff options
context:
space:
mode:
authorsoryu <soryu@soryu.co>2026-01-11 05:52:14 +0000
committersoryu <soryu@soryu.co>2026-01-15 00:21:16 +0000
commit87044a747b47bd83249d61a45842c7f7b2eae56d (patch)
treeef2000ce79ffcc2723ef841acef5aa1deb1d5378 /makima/daemon/Cargo.toml
parent077820c4167c168072d217a1b01df840463a12a8 (diff)
downloadsoryu-87044a747b47bd83249d61a45842c7f7b2eae56d.tar.gz
soryu-87044a747b47bd83249d61a45842c7f7b2eae56d.zip
Contract system
Diffstat (limited to 'makima/daemon/Cargo.toml')
-rw-r--r--makima/daemon/Cargo.toml48
1 files changed, 0 insertions, 48 deletions
diff --git a/makima/daemon/Cargo.toml b/makima/daemon/Cargo.toml
deleted file mode 100644
index 02ecbb3..0000000
--- a/makima/daemon/Cargo.toml
+++ /dev/null
@@ -1,48 +0,0 @@
-[package]
-name = "makima-daemon"
-version = "0.1.0"
-edition = "2024"
-
-[[bin]]
-name = "makima-daemon"
-path = "src/main.rs"
-
-[dependencies]
-# Async runtime
-tokio = { version = "1.0", features = ["full", "signal", "process"] }
-futures = "0.3"
-async-trait = "0.1"
-
-# WebSocket client
-tokio-tungstenite = { version = "0.24", features = ["native-tls"] }
-
-# Serialization
-serde = { version = "1.0", features = ["derive"] }
-serde_json = "1.0"
-
-# Configuration
-config = "0.14"
-clap = { version = "4.4", features = ["derive", "env"] }
-
-# Database (local state)
-rusqlite = { version = "0.32", features = ["bundled"] }
-
-# Error handling
-thiserror = "2.0"
-anyhow = "1.0"
-
-# Logging
-tracing = "0.1"
-tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
-
-# Utilities
-uuid = { version = "1.0", features = ["v4", "serde"] }
-chrono = { version = "0.4", features = ["serde"] }
-dashmap = "6.0"
-backoff = { version = "0.4", features = ["tokio"] }
-hostname = "0.4"
-sha2 = "0.10"
-hex = "0.4"
-shell-escape = "0.1"
-dirs = "5.0"
-rand = "0.9"