summaryrefslogtreecommitdiff
path: root/makima/daemon/Cargo.toml
diff options
context:
space:
mode:
authorsoryu <soryu@soryu.co>2026-01-06 04:08:11 +0000
committersoryu <soryu@soryu.co>2026-01-11 03:01:13 +0000
commit8b17a175c3e7e27b789812eba4e3cd760beadb10 (patch)
tree7864dcaa2fa9db47fdfd4e8bfdb0b1dde832aa33 /makima/daemon/Cargo.toml
parentf79c416c58557d2f946aa5332989afdfa8c021cd (diff)
downloadsoryu-8b17a175c3e7e27b789812eba4e3cd760beadb10.tar.gz
soryu-8b17a175c3e7e27b789812eba4e3cd760beadb10.zip
Initial Control system
Diffstat (limited to 'makima/daemon/Cargo.toml')
-rw-r--r--makima/daemon/Cargo.toml48
1 files changed, 48 insertions, 0 deletions
diff --git a/makima/daemon/Cargo.toml b/makima/daemon/Cargo.toml
new file mode 100644
index 0000000..02ecbb3
--- /dev/null
+++ b/makima/daemon/Cargo.toml
@@ -0,0 +1,48 @@
+[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"