bump deps ver, use result instead of panic for fs watcher, hardcode dahlia tech to 1st unit

This commit is contained in:
yuvlian
2026-04-30 20:31:00 +07:00
parent 5e0f2a9673
commit 676bd63dac
12 changed files with 3151 additions and 3060 deletions
+20 -20
View File
@@ -7,53 +7,53 @@ version = "0.1.0"
[workspace.dependencies]
# Framework
tokio = { version = "1.36.0", features = ["full"] }
axum = "0.8.1"
axum-server = "0.7.1"
tower-http = "0.6.2"
reqwest = { version = "0.12", default-features = false, features = [
tokio = { version = "1.52.1", features = ["full"] }
axum = "0.8.9"
axum-server = "0.8.0"
tower-http = "0.6.8"
reqwest = { version = "0.13.3", default-features = false, features = [
"json",
"multipart",
"cookies",
"gzip",
"brotli",
"deflate",
"rustls-tls",
"rustls",
"charset",
"http2",
"macos-system-configuration",
"system-proxy",
] }
# JSON
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
# Logging
tracing = "0.1.40"
tracing = "0.1.44"
ansi_term = "0.12.1"
env_logger = "0.11.3"
env_logger = "0.11.10"
# Cryptography
rsa = { version = "0.9.6", features = [
rsa = { version = "0.9.10", features = [
"sha1",
"nightly",
"pkcs5",
"serde",
"sha2",
] }
rand = "0.9.0"
rand = "0.10.1"
# Serialization
prost = "0.13.5"
prost-types = "0.13.5"
prost-build = "0.13.5"
prost = "0.14.3"
prost-types = "0.14.3"
prost-build = "0.14.3"
rbase64 = "2.0.3"
# Utilities
paste = "1.0.14"
notify = "8.0.0"
notify-debouncer-mini = "0.6.0"
anyhow = "1.0.81"
paste = "1.0.15"
notify = "8.2.0"
notify-debouncer-mini = "0.7.0"
anyhow = "1.0.102"
# Local
proto = { path = "proto/" }