From 47fc0cbbed2f83b1ffe84f528f627e3a3008e760 Mon Sep 17 00:00:00 2001 From: J / Jacob Babich Date: Mon, 7 Oct 2024 01:07:14 -0400 Subject: [PATCH] fix: raise minimal version of `tracing` to `0.1.23` because `0.1` allowed some versions predating what `llama-cpp-2` requires (I think it's weird that it works like this but I expect to use the same features so this is the minimum regardless) --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index af39c29..358ed5c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,4 +9,4 @@ repository = "https://github.com/babichjacob/ac-qu-ai-nt" [workspace.dependencies] clap = "4" -tracing = "0.1" +tracing = "0.1.23"