feat: initial commit, add register and peers endpoints

This commit is contained in:
2026-02-09 00:25:17 -08:00
commit 15fc72d5c9
13 changed files with 2301 additions and 0 deletions

19
Cargo.toml Normal file
View File

@@ -0,0 +1,19 @@
[package]
name = "wg-mesh"
version = "0.1.0"
edition = "2024"
[dependencies]
actix-web = "4.12.1"
base64 = "0.22.1"
console = "0.16.2"
ipnetwork = { version = "0.21.1", features = ["serde"] }
redis = { version = "=1.0.2", features = ["connection-manager", "tokio-comp"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
thiserror = "2.0.18"
thiserror-ext = "0.3.0"
tokio = "1.49.0"
tracing = "0.1.44"
tracing-actix-web = "0.7.21"
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }