From f629a318d2a507481809d9908f03190c308eaecd Mon Sep 17 00:00:00 2001 From: Radu Matei Date: Wed, 9 Aug 2023 17:11:20 +0200 Subject: [PATCH] fix(deps): remove pinned `half` dependency This commit removes the pinned version of the `half` crate, allowing consumers to resolve to a version of `half` that is compatible with other dependencies in the project. Signed-off-by: Radu Matei --- crates/llm-base/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/llm-base/Cargo.toml b/crates/llm-base/Cargo.toml index 4e6de051..0ed85104 100644 --- a/crates/llm-base/Cargo.toml +++ b/crates/llm-base/Cargo.toml @@ -21,7 +21,7 @@ thiserror = { workspace = true } partial_sort = "0.2.0" serde_bytes = "0.11" memmap2 = { workspace = true } -half = "=2.2.1" +half = "2" tokenizers = {version="0.13.3", default-features=false, features=["onig"]} regex = "1.8" tracing = { workspace = true }