diff --git a/Cargo.lock b/Cargo.lock index 87f64fbcc..e59b90f8c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2599,9 +2599,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" [[package]] name = "tracing" -version = "0.1.41" +version = "0.1.43" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" +checksum = "2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647" dependencies = [ "log", "pin-project-lite", @@ -2611,9 +2611,9 @@ dependencies = [ [[package]] name = "tracing-attributes" -version = "0.1.30" +version = "0.1.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903" +checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" dependencies = [ "proc-macro2", "quote", @@ -2622,9 +2622,9 @@ dependencies = [ [[package]] name = "tracing-core" -version = "0.1.34" +version = "0.1.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" +checksum = "7a04e24fab5c89c6a36eb8558c9656f30d81de51dfa4d3b45f26b21d61fa0a6c" dependencies = [ "once_cell", "valuable", diff --git a/actix-identity/Cargo.toml b/actix-identity/Cargo.toml index 795e65374..2bd3d2022 100644 --- a/actix-identity/Cargo.toml +++ b/actix-identity/Cargo.toml @@ -25,7 +25,7 @@ actix-web = { version = "4", default-features = false, features = ["cookies", "s derive_more = { version = "2", features = ["display", "error", "from"] } futures-core = "0.3.17" serde = { version = "1", features = ["derive"] } -tracing = { version = "0.1.30", default-features = false, features = ["log"] } +tracing = { version = "0.1.43", default-features = false, features = ["log"] } [dev-dependencies] actix-http = "3" diff --git a/actix-session/Cargo.toml b/actix-session/Cargo.toml index 4cc72b910..bae7ea053 100644 --- a/actix-session/Cargo.toml +++ b/actix-session/Cargo.toml @@ -34,7 +34,7 @@ derive_more = { version = "2", features = ["display", "error", "from"] } rand = "0.9" serde = { version = "1" } serde_json = { version = "1" } -tracing = { version = "0.1.30", default-features = false, features = ["log"] } +tracing = { version = "0.1.43", default-features = false, features = ["log"] } # redis-session redis = { version = "0.32", default-features = false, features = ["tokio-comp", "connection-manager"], optional = true } @@ -45,7 +45,7 @@ actix-session = { path = ".", features = ["cookie-session", "redis-session"] } actix-test = "0.1" actix-web = { version = "4", default-features = false, features = ["cookies", "secure-cookies", "macros"] } tracing-subscriber = { version = "0.3", features = ["env-filter"] } -tracing = "0.1.30" +tracing = "0.1.43" [lints] workspace = true diff --git a/actix-web-httpauth/Cargo.toml b/actix-web-httpauth/Cargo.toml index 52e2792c7..0f78b9669 100644 --- a/actix-web-httpauth/Cargo.toml +++ b/actix-web-httpauth/Cargo.toml @@ -32,7 +32,7 @@ actix-cors = "0.7" actix-service = "2" actix-web = { version = "4.1", default-features = false, features = ["macros"] } tracing-subscriber = { version = "0.3", features = ["env-filter"] } -tracing = "0.1.30" +tracing = "0.1.43" [lints] workspace = true diff --git a/actix-ws/Cargo.toml b/actix-ws/Cargo.toml index bd7b495d5..144a86bc9 100644 --- a/actix-ws/Cargo.toml +++ b/actix-ws/Cargo.toml @@ -26,7 +26,7 @@ tokio = { version = "1.48", features = ["sync"] } actix-web = "4.8" futures-util = { version = "0.3.17", default-features = false, features = ["std"] } tokio = { version = "1.48", features = ["sync", "rt", "macros"] } -tracing = "0.1.30" +tracing = "0.1.43" tracing-subscriber = { version = "0.3", features = ["env-filter"] } [lints]