From 0f59d6428a7df4179663c2355c642b33353613be Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 Jul 2024 15:17:19 +0000 Subject: [PATCH] cargo prod(deps): update tracing-log requirement from 0.1 to 0.2 Updates the requirements on [tracing-log](https://github.com/tokio-rs/tracing) to permit the latest version. - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-log-0.1.0...tracing-log-0.2.0) --- updated-dependencies: - dependency-name: tracing-log dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- schemer-repl/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemer-repl/Cargo.toml b/schemer-repl/Cargo.toml index 69208fb..2d8b19c 100644 --- a/schemer-repl/Cargo.toml +++ b/schemer-repl/Cargo.toml @@ -27,6 +27,6 @@ schemer-lang = { version = "0.1", path = "../schemer-lang" } schemer-library = { version = "0.1", path = "../schemer-library" } structopt = "0.3" tracing = "0.1" -tracing-log = "0.1" +tracing-log = "0.2" tracing-subscriber = { version = "0.3", features = ["env-filter"] } xdirs = "0.1"