diff --git a/.cargo/config.toml b/.cargo/config.toml index 6e54197..bff29e6 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,3 +1,2 @@ [build] rustflags = ["--cfg", "tokio_unstable"] -rustdocflags = ["--cfg", "tokio_unstable"] diff --git a/Cargo.lock b/Cargo.lock index 5d5812d..cc02117 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -802,6 +802,7 @@ dependencies = [ "luajit", "sysexits", "tokio", + "tracing", ] [[package]] diff --git a/crates/lb/Cargo.toml b/crates/lb/Cargo.toml index 6dce9fc..18c4596 100644 --- a/crates/lb/Cargo.toml +++ b/crates/lb/Cargo.toml @@ -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" }