[WIP!] feat: ts6 server support

this is really unfinished and *WILL* be rebased!
pushing just to let the test run on github's servers
(my laptop is too sh*tty)
This commit is contained in:
user0-07161 2025-12-28 15:36:48 +01:00
parent 86b9c8d3a7
commit a3a19c610d
34 changed files with 4423 additions and 395 deletions

View file

@ -5,16 +5,16 @@ edition = "2024"
[dependencies]
async-trait = "0.1.89"
clap = { version = "4.5.48", features = ["derive"] }
once_cell = "1.21.3"
tokio = { version = "1.47.1", features = ["full"] }
console-subscriber = { version = "0.4.1", optional = true }
tracing = "0.1.41"
tracing-subscriber = "0.3.20"
clap = { version = "4.5.53", features = ["derive"] }
tokio = { version = "1.48.0", features = ["full"] }
console-subscriber = { version = "0.5.0", optional = true }
tracing = "0.1.44"
tracing-subscriber = "0.3.22"
thiserror = "2.0.17"
anyhow = "1.0.100"
toml = "0.9.7"
toml = "0.9.10"
serde = { version = "1.0.228", features = ["derive"] }
once_cell = "1.21.3"
[features]
tokio-console = ["tokio/tracing", "console-subscriber"]