diff --git a/Cargo.lock b/Cargo.lock index 25bc092ae..9da416300 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3645,9 +3645,9 @@ dependencies = [ [[package]] name = "tracing" -version = "0.1.43" +version = "0.1.44" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647" +checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" dependencies = [ "log", "pin-project-lite", diff --git a/src/hyperlight_common/Cargo.toml b/src/hyperlight_common/Cargo.toml index 199bb1f12..ebb5ad9bc 100644 --- a/src/hyperlight_common/Cargo.toml +++ b/src/hyperlight_common/Cargo.toml @@ -18,7 +18,7 @@ workspace = true flatbuffers = { version = "25.9.23", default-features = false } anyhow = { version = "1.0.100", default-features = false } log = "0.4.29" -tracing = { version = "0.1.43", optional = true } +tracing = { version = "0.1.44", optional = true } arbitrary = {version = "1.4.2", optional = true, features = ["derive"]} spin = "0.10.0" thiserror = { version = "2.0.16", default-features = false } diff --git a/src/hyperlight_guest/Cargo.toml b/src/hyperlight_guest/Cargo.toml index 1602d1f0d..3e54dc5f2 100644 --- a/src/hyperlight_guest/Cargo.toml +++ b/src/hyperlight_guest/Cargo.toml @@ -16,7 +16,7 @@ anyhow = { version = "1.0.100", default-features = false } serde_json = { version = "1.0", default-features = false, features = ["alloc"] } hyperlight-common = { workspace = true, default-features = false } flatbuffers = { version= "25.9.23", default-features = false } -tracing = { version = "0.1.43", default-features = false, features = ["attributes"] } +tracing = { version = "0.1.44", default-features = false, features = ["attributes"] } [target.'cfg(target_arch = "x86_64")'.dependencies] hyperlight-guest-tracing = { workspace = true, default-features = false, optional = true } diff --git a/src/hyperlight_guest_bin/Cargo.toml b/src/hyperlight_guest_bin/Cargo.toml index 74888db00..2049dc141 100644 --- a/src/hyperlight_guest_bin/Cargo.toml +++ b/src/hyperlight_guest_bin/Cargo.toml @@ -31,7 +31,7 @@ log = { version = "0.4", default-features = false } linkme = { version = "0.3.35", optional = true } spin = "0.10.0" flatbuffers = { version = "25.2.10", default-features = false } -tracing = { version = "0.1.43", default-features = false, features = ["attributes"] } +tracing = { version = "0.1.44", default-features = false, features = ["attributes"] } [lints] workspace = true diff --git a/src/hyperlight_guest_tracing/Cargo.toml b/src/hyperlight_guest_tracing/Cargo.toml index 1607c5f8c..20506f625 100644 --- a/src/hyperlight_guest_tracing/Cargo.toml +++ b/src/hyperlight_guest_tracing/Cargo.toml @@ -12,7 +12,7 @@ description = """Provides the tracing functionality for the hyperlight guest.""" [dependencies] hyperlight-common = { workspace = true, default-features = false } spin = "0.10.0" -tracing = { version = "0.1.43", default-features = false, features = ["attributes"] } +tracing = { version = "0.1.44", default-features = false, features = ["attributes"] } tracing-core = { version = "0.1.36", default-features = false } [lints] diff --git a/src/hyperlight_host/Cargo.toml b/src/hyperlight_host/Cargo.toml index e3527a650..71aa527b9 100644 --- a/src/hyperlight_host/Cargo.toml +++ b/src/hyperlight_host/Cargo.toml @@ -36,7 +36,7 @@ termcolor = "1.2.0" bitflags = "2.10.0" log = "0.4.29" opentelemetry = { version = "0.31.0", optional = true } -tracing = { version = "0.1.43", features = ["log"] } +tracing = { version = "0.1.44", features = ["log"] } tracing-log = "0.2.0" tracing-core = "0.1.36" tracing-opentelemetry = { version = "0.32.0", optional = true } @@ -92,7 +92,7 @@ serial_test = "3.1.1" hyperlight-testing = { workspace = true } env_logger = "0.11.8" tracing-forest = { version = "0.3.0", features = ["uuid", "chrono", "smallvec", "serde", "env-filter"] } -tracing = "0.1.43" +tracing = "0.1.44" tracing-subscriber = {version = "0.3.22", features = ["std", "env-filter"]} tracing-opentelemetry = "0.32.0" opentelemetry = "0.31.0" diff --git a/src/hyperlight_testing/Cargo.toml b/src/hyperlight_testing/Cargo.toml index bf92c8d06..7a64036c2 100644 --- a/src/hyperlight_testing/Cargo.toml +++ b/src/hyperlight_testing/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" anyhow = "1.0.100" log = "0.4" once_cell = "1.21" -tracing = { version = "0.1.43", features = ["log"] } +tracing = { version = "0.1.44", features = ["log"] } tracing-log = "0.2.0" tracing-core = "0.1.36" tracing-serde = "0.2"