From ae320c837b0a61452c83e1e91ff012ac31c505b2 Mon Sep 17 00:00:00 2001 From: Marc Brinkmann Date: Tue, 6 Feb 2024 13:17:26 +0100 Subject: [PATCH] Enable `tracing` feature of `juliet` --- Cargo.lock | 1 + node/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index e4f2329487..7b8064c2bf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3323,6 +3323,7 @@ dependencies = [ "strum 0.25.0", "thiserror", "tokio", + "tracing", ] [[package]] diff --git a/node/Cargo.toml b/node/Cargo.toml index be9e1528f8..630b0dd814 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -41,7 +41,7 @@ http = "0.2.1" humantime = "2.1.0" hyper = "0.14.26" itertools = "0.10.0" -juliet = "0.2.0" +juliet = { version = "0.2.0", features = ["tracing"] } libc = "0.2.66" linked-hash-map = "0.5.3" lmdb-rkv = "0.14"