From c3031d371a17b810a673488a0abe7210ea5f2426 Mon Sep 17 00:00:00 2001 From: Denis Drakhnia Date: Sun, 12 May 2024 08:32:38 +0300 Subject: [PATCH] master: do not limit dependency versions --- master/Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/master/Cargo.toml b/master/Cargo.toml index b824734..578292a 100644 --- a/master/Cargo.toml +++ b/master/Cargo.toml @@ -18,20 +18,20 @@ logtime = ["chrono"] [dependencies] thiserror = "1.0.49" getopts = "0.2.21" -log = "<0.4.19" +log = "0.4.18" bitflags = "2.4" fastrand = "2.0.1" serde = { version = "1.0.188", features = ["derive"] } toml = "0.5.11" -blake2b_simd = "=1.0.0" -ahash = "<0.5" +blake2b_simd = "1.0" +ahash = "0.4.8" xash3d-protocol = { path = "../protocol", version = "0.1.0" } [target.'cfg(not(windows))'.dependencies] signal-hook = { version = "0.3.17", default-features = false } [dependencies.chrono] -version = "<0.4.27" +version = "0.4.26" optional = true default-features = false features = ["clock"]