From 8814dc8cdca0f894fbff293b2e9b6ae304e67acc Mon Sep 17 00:00:00 2001 From: Reactor Scram Date: Tue, 15 Oct 2024 17:06:57 -0500 Subject: [PATCH] chore(rust): specify exact version of `tracing` (#7037) Because of the patch we apply, if we delete `Cargo.lock`, this line causes an error. Deleting `Cargo.lock` should be valid in general. --------- Signed-off-by: Reactor Scram --- rust/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 86be50123..26b817207 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -85,7 +85,7 @@ tracing-stackdriver = { git = "https://github.com/thomaseizinger/tracing-stackdr # Enforce `tracing-macros` to have released `tracing` version. [patch.'https://github.com/tokio-rs/tracing'] -tracing = "0.1" +tracing = "0.1.40" [profile.release] strip = true