diff --git a/Cargo.lock b/Cargo.lock index cc5535eb3e..fe74b22be5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3896,9 +3896,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" [[package]] name = "tracing" -version = "0.1.40" +version = "0.1.41" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" +checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" dependencies = [ "log", "pin-project-lite", @@ -3908,9 +3908,9 @@ dependencies = [ [[package]] name = "tracing-attributes" -version = "0.1.27" +version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" +checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" dependencies = [ "proc-macro2", "quote", @@ -3919,9 +3919,9 @@ dependencies = [ [[package]] name = "tracing-core" -version = "0.1.32" +version = "0.1.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" +checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c" dependencies = [ "once_cell", ] diff --git a/any_spawner/Cargo.toml b/any_spawner/Cargo.toml index 349539f769..f0bccc9b2f 100644 --- a/any_spawner/Cargo.toml +++ b/any_spawner/Cargo.toml @@ -16,7 +16,7 @@ thiserror = "2.0" tokio = { version = "1.41", optional = true, default-features = false, features = [ "rt", ] } -tracing = { version = "0.1.40", optional = true } +tracing = { version = "0.1.41", optional = true } wasm-bindgen-futures = { version = "0.4.47", optional = true } [features] diff --git a/integrations/axum/Cargo.toml b/integrations/axum/Cargo.toml index b912c1ce4c..04ed5e4dc1 100644 --- a/integrations/axum/Cargo.toml +++ b/integrations/axum/Cargo.toml @@ -27,7 +27,7 @@ parking_lot = "0.12.3" tokio = { version = "1.41", default-features = false } tower = { version = "0.5.1", features = ["util"] } tower-http = "0.6.2" -tracing = { version = "0.1.40", optional = true } +tracing = { version = "0.1.41", optional = true } [dev-dependencies] axum = "0.7.9" diff --git a/leptos/Cargo.toml b/leptos/Cargo.toml index e3a3266dd5..d43413c466 100644 --- a/leptos/Cargo.toml +++ b/leptos/Cargo.toml @@ -30,7 +30,7 @@ reactive_graph = { workspace = true, features = ["serde"] } rustc-hash = "2.0" tachys = { workspace = true, features = ["reactive_graph", "reactive_stores", "oco"] } thiserror = "2.0" -tracing = { version = "0.1.40", optional = true } +tracing = { version = "0.1.41", optional = true } typed-builder = "0.20.0" typed-builder-macro = "0.20.0" serde = "1.0" diff --git a/leptos_dom/Cargo.toml b/leptos_dom/Cargo.toml index 09cd0eb0ae..d78f42e531 100644 --- a/leptos_dom/Cargo.toml +++ b/leptos_dom/Cargo.toml @@ -14,7 +14,7 @@ reactive_graph = { workspace = true } or_poisoned = { workspace = true } js-sys = "0.3.74" send_wrapper = "0.6.0" -tracing = { version = "0.1.40", optional = true } +tracing = { version = "0.1.41", optional = true } wasm-bindgen = "0.2.95" serde_json = { version = "1.0", optional = true } serde = { version = "1.0", optional = true } diff --git a/leptos_macro/Cargo.toml b/leptos_macro/Cargo.toml index 2387a74722..358d90424c 100644 --- a/leptos_macro/Cargo.toml +++ b/leptos_macro/Cargo.toml @@ -27,7 +27,7 @@ leptos_hot_reload = { workspace = true } server_fn_macro = { workspace = true } convert_case = "0.6.0" uuid = { version = "1.11", features = ["v4"] } -tracing = { version = "0.1.40", optional = true } +tracing = { version = "0.1.41", optional = true } [dev-dependencies] log = "0.4.22" diff --git a/leptos_server/Cargo.toml b/leptos_server/Cargo.toml index 1c0ed3f59a..e0b19ed6b0 100644 --- a/leptos_server/Cargo.toml +++ b/leptos_server/Cargo.toml @@ -15,7 +15,7 @@ codee = { version = "0.2.0", features = ["json_serde"] } hydration_context = { workspace = true } reactive_graph = { workspace = true, features = ["hydration"] } server_fn = { workspace = true } -tracing = { version = "0.1.40", optional = true } +tracing = { version = "0.1.41", optional = true } futures = "0.3.31" any_spawner = { workspace = true } diff --git a/meta/Cargo.toml b/meta/Cargo.toml index cecc51b0ad..834b10a802 100644 --- a/meta/Cargo.toml +++ b/meta/Cargo.toml @@ -14,7 +14,7 @@ once_cell = "1.20" or_poisoned = { workspace = true } indexmap = "2.6" send_wrapper = "0.6.0" -tracing = { version = "0.1.40", optional = true } +tracing = { version = "0.1.41", optional = true } wasm-bindgen = "0.2.95" futures = "0.3.31" diff --git a/reactive_graph/Cargo.toml b/reactive_graph/Cargo.toml index edfd9683e1..015a1447da 100644 --- a/reactive_graph/Cargo.toml +++ b/reactive_graph/Cargo.toml @@ -19,7 +19,7 @@ rustc-hash = "2.0" serde = { version = "1.0", features = ["derive"], optional = true } slotmap = "1.0" thiserror = "2.0" -tracing = { version = "0.1.40", optional = true } +tracing = { version = "0.1.41", optional = true } guardian = "1.2" async-lock = "3.4.0" send_wrapper = { version = "0.6.0", features = ["futures"] } diff --git a/router/Cargo.toml b/router/Cargo.toml index 4f9a5533a7..091ac71bc3 100644 --- a/router/Cargo.toml +++ b/router/Cargo.toml @@ -21,7 +21,7 @@ futures = "0.3.31" url = "2.5" js-sys = { version = "0.3.74" } wasm-bindgen = { version = "0.2.95" } -tracing = { version = "0.1.40", optional = true } +tracing = { version = "0.1.41", optional = true } once_cell = "1.20" send_wrapper = "0.6.0" thiserror = "2.0" diff --git a/tachys/Cargo.toml b/tachys/Cargo.toml index af5e0dabfd..0b9b6e9ae4 100644 --- a/tachys/Cargo.toml +++ b/tachys/Cargo.toml @@ -159,7 +159,7 @@ sledgehammer_bindgen = { version = "0.6.0", features = [ "web", ], optional = true } sledgehammer_utils = { version = "0.3.1", optional = true } -tracing = { version = "0.1.40", optional = true } +tracing = { version = "0.1.41", optional = true } [dev-dependencies] tokio-test = "0.4.4"