cooked I Am

This commit is contained in:
lda
2026-04-07 01:46:58 +07:00 Unverified
parent 50997b7f93
commit a1e3cd9234
7 changed files with 65 additions and 99 deletions
+15 -5
View File
@@ -1,6 +1,6 @@
[package]
name = "wakey-agent"
version = "0.1.0"
version = "0.0.1"
edition = "2024"
[dependencies]
@@ -9,14 +9,24 @@ clap = { version = "4", features = ["derive"] }
futures-util = "0.3"
http = "1"
macaddr = { version = "1", features = ["serde", "serde_std"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
reqwest = { version = "0.12", default-features = false, features = [
"json",
"rustls-tls",
] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["fs", "macros", "rt-multi-thread", "time", "signal", "sync"] }
tokio = { version = "1", features = [
"fs",
"macros",
"rt-multi-thread",
"time",
"signal",
"sync",
] }
tokio-tungstenite = { version = "0.24", features = ["rustls-tls-webpki-roots"] }
toml = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
url = "2"
wakey = { path = ".." }
wakey-core = { path = "../wakey-core" }
wakey = { path = "..", registry = "gitea" }
wakey-core = { path = "../wakey-core", registry = "gitea" }