feat(core): modernize backend with rusqlite and tokio scheduler

This commit migrates Firelink to use native Rust implementations for state persistence (SQLite) and background scheduling (tokio::spawn + chrono). React's interval pollers are completely removed.
This commit is contained in:
NimBold
2026-06-13 22:40:19 +03:30
parent a2b64aa6d1
commit d6fa8b6865
8 changed files with 815 additions and 214 deletions
+7
View File
@@ -39,3 +39,10 @@ axum = "0.8.9"
tower-http = { version = "0.6.11", features = ["cors"] }
sysproxy = "0.3.0"
semver = "1.0.28"
keepawake = "0.6.0"
open = "5.3.5"
system_shutdown = "4.1.0"
tokio-tungstenite = "0.29.0"
futures-util = { version = "0.3.32", features = ["sink"] }
rusqlite = { version = "0.40.1", features = ["bundled"] }
chrono = "0.4.38"