From 504a287abbf93ef0ffae09688210f423e8061160 Mon Sep 17 00:00:00 2001 From: Hayden Stainsby Date: Tue, 26 Nov 2024 23:30:00 +0100 Subject: [PATCH] tracing: update core to v0.1.33 and attributes to v0.1.28 (#3156) Updates the main `tracing` crate with the newly released versions of `tracing-core` and `tracing-attributes`. --- tracing/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tracing/Cargo.toml b/tracing/Cargo.toml index c1b104175..5ff2bb48d 100644 --- a/tracing/Cargo.toml +++ b/tracing/Cargo.toml @@ -28,9 +28,9 @@ edition = "2018" rust-version = "1.63.0" [dependencies] -tracing-core = { path = "../tracing-core", version = "0.1.32", default-features = false } +tracing-core = { path = "../tracing-core", version = "0.1.33", default-features = false } log = { version = "0.4.17", optional = true } -tracing-attributes = { path = "../tracing-attributes", version = "0.1.27", optional = true } +tracing-attributes = { path = "../tracing-attributes", version = "0.1.28", optional = true } pin-project-lite = "0.2.9" [dev-dependencies]