From dae7894a23badc76ec571786b16a96fe24be46ac Mon Sep 17 00:00:00 2001 From: diogo464 Date: Fri, 5 Dec 2025 19:35:10 +0000 Subject: added tracing as dev dependency --- Cargo.lock | 12 ++++++++++++ Cargo.toml | 1 + 2 files changed, 13 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index d38b2c7..d0f4fdd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -682,9 +682,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647" dependencies = [ "pin-project-lite", + "tracing-attributes", "tracing-core", ] +[[package]] +name = "tracing-attributes" +version = "0.1.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "tracing-core" version = "0.1.35" diff --git a/Cargo.toml b/Cargo.toml index 38ada69..13a11fe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,3 +30,4 @@ embedded-io-async = { version = "0.6", features = ["std"] } critical-section = { version = "1", features = ["std"] } rand = "0.9.2" tracing-subscriber = "0.3" +tracing = "0.1" -- cgit