From 12f52a88b327c1f71faa7cb87eb4b964f4336bf7 Mon Sep 17 00:00:00 2001 From: David Barsky Date: Tue, 2 Jul 2024 21:05:33 -0700 Subject: [PATCH] actually enable valuable on `tracing` Summary: I thought `valuable` was enabled; it wasn't. Let's *actually* enable it. Reviewed By: Wilfred Differential Revision: D59301882 fbshipit-source-id: 60337d3b69f8babb4cd6f12d044fd2f856539056 --- reverie-examples/Cargo.toml | 2 +- reverie-ptrace/Cargo.toml | 2 +- reverie-util/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/reverie-examples/Cargo.toml b/reverie-examples/Cargo.toml index 13f8119..1becaff 100644 --- a/reverie-examples/Cargo.toml +++ b/reverie-examples/Cargo.toml @@ -54,4 +54,4 @@ reverie-util = { version = "0.1.0", path = "../reverie-util" } serde = { version = "1.0.185", features = ["derive", "rc"] } serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] } tokio = { version = "1.37.0", features = ["full", "test-util", "tracing"] } -tracing = { version = "0.1.40", features = ["attributes"] } +tracing = { version = "0.1.40", features = ["attributes", "valuable"] } diff --git a/reverie-ptrace/Cargo.toml b/reverie-ptrace/Cargo.toml index 670faa7..37425d1 100644 --- a/reverie-ptrace/Cargo.toml +++ b/reverie-ptrace/Cargo.toml @@ -30,7 +30,7 @@ serde = { version = "1.0.185", features = ["derive", "rc"] } thiserror = "1.0.49" tokio = { version = "1.37.0", features = ["full", "test-util", "tracing"] } tokio-stream = { version = "0.1.14", features = ["fs", "io-util", "net", "signal", "sync", "time"] } -tracing = { version = "0.1.40", features = ["attributes"] } +tracing = { version = "0.1.40", features = ["attributes", "valuable"] } tracing-subscriber = { version = "0.3.18", features = ["chrono", "env-filter", "json", "local-time", "parking_lot", "registry"] } unwind = { version = "0.4", features = ["ptrace"] } diff --git a/reverie-util/Cargo.toml b/reverie-util/Cargo.toml index df49e39..7182885 100644 --- a/reverie-util/Cargo.toml +++ b/reverie-util/Cargo.toml @@ -13,6 +13,6 @@ anyhow = "1.0.75" chrono = { version = "0.4", features = ["clock", "serde", "std"], default-features = false } clap = { version = "3.2.25", features = ["derive", "env", "regex", "unicode", "wrap_help"] } reverie = { version = "0.1.0", path = "../reverie" } -tracing = { version = "0.1.40", features = ["attributes"] } +tracing = { version = "0.1.40", features = ["attributes", "valuable"] } tracing-appender = "0.2.2" tracing-subscriber = { version = "0.3.18", features = ["chrono", "env-filter", "json", "local-time", "parking_lot", "registry"] }