Add tracing to lb

This commit is contained in:
lumi 2025-06-25 15:02:53 +10:00
parent e71d618d10
commit a07f62ecc5
Signed by: luaneko
GPG Key ID: 406809B8763FF07A
3 changed files with 3 additions and 2 deletions

View File

@ -1,3 +1,2 @@
[build]
rustflags = ["--cfg", "tokio_unstable"]
rustdocflags = ["--cfg", "tokio_unstable"]

1
Cargo.lock generated
View File

@ -802,6 +802,7 @@ dependencies = [
"luajit",
"sysexits",
"tokio",
"tracing",
]
[[package]]

View File

@ -9,7 +9,8 @@ derive_more = { version = "2.0.1", features = ["full"] }
luaffi = { version = "0.1.0", path = "../luaffi" }
luajit = { version = "0.1.0", path = "../luajit" }
sysexits = "0.9.0"
tokio = { version = "1.45.1", features = ["rt", "time", "fs", "net", "process", "signal"] }
tokio = { version = "1.45.1", features = ["rt", "time", "fs", "net", "process", "signal", "tracing"] }
tracing = "0.1.41"
[dev-dependencies]
luaify = { path = "../luaify" }