From dc8229f929cbec421ed2f62c62e4e6f896baa535 Mon Sep 17 00:00:00 2001 From: griffi-gh Date: Sun, 21 May 2023 02:16:12 +0200 Subject: [PATCH] use specific log version --- kubi-server/Cargo.toml | 2 +- kubi/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kubi-server/Cargo.toml b/kubi-server/Cargo.toml index 44bec47..60512de 100644 --- a/kubi-server/Cargo.toml +++ b/kubi-server/Cargo.toml @@ -7,7 +7,7 @@ publish = false [dependencies] kubi-shared = { path = "../kubi-shared" } kubi-logging = { path = "../kubi-logging" } -log = "*" +log = "0.4" shipyard = { git = "https://github.com/leudz/shipyard", rev = "a4f4d27edcf", default-features = false, features = ["std", "proc", "thread_local"] } serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] } toml = "0.7" diff --git a/kubi/Cargo.toml b/kubi/Cargo.toml index 12d113a..000ea28 100644 --- a/kubi/Cargo.toml +++ b/kubi/Cargo.toml @@ -7,7 +7,7 @@ publish = false [dependencies] kubi-shared = { path = "../kubi-shared" } kubi-logging = { path = "../kubi-logging" } -log = "*" +log = "0.4" glium = { git = "https://github.com/glium/glium", rev = "5d50e7" } glam = { version = "0.23", features = ["debug-glam-assert", "fast-math"] } image = { version = "0.24", default_features = false, features = ["png"] }