Refactor code structure for improved readability and maintainability

This commit is contained in:
2026-03-02 14:29:25 +01:00
parent fb9d6ca9c8
commit 9241f1fbac
9 changed files with 355 additions and 127 deletions

View File

@@ -8,16 +8,7 @@ clap = { version = "4.5.37", features = ["derive"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
toml = "1.0.3"
tokio = { version = "1.49.0", features = [
"macros",
"rt-multi-thread",
"time",
"fs",
"net",
"io-util",
"sync",
"signal",
] }
tokio = { version = "1.49.0", features = ["macros", "rt-multi-thread", "time", "fs", "net", "io-util", "sync", "signal", "process"] }
anyhow = "1.0.102"
uuid = { version = "1.21.0", features = ["v4", "serde"] }
ipnet = { version = "2.11.0", features = ["serde"] }
@@ -25,3 +16,4 @@ base64 = "0.22.1"
tun-rs = { version = "2.8.2", features = ["async"] }
chrono = "0.4.44"
etherparse = "0.19.0"
serde_bytes = "0.11.19"