From 393d43b5127d76fd6bed5f67c48d4ed2054faffd Mon Sep 17 00:00:00 2001 From: Tamo Date: Tue, 2 Jul 2024 15:22:33 +0200 Subject: [PATCH 1/2] update dependencies --- Cargo.toml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bc3159d..e356014 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,20 +9,20 @@ edition = "2018" license = "MIT" [dependencies] -bytemuck = { version = "1.7.0", features = ["derive"] } -byteorder = "1.3.4" +bytemuck = { version = "1.16.1", features = ["derive"] } +byteorder = "1.5.0" flate2 = { version = "1.0", optional = true } -lz4_flex = { version = "0.11.1", optional = true } -rayon = { version = "1.7.0", optional = true } -snap = { version = "1.0.5", optional = true } -tempfile = { version = "3.2.0", optional = true } -zstd = { version = "0.13.0", optional = true } +lz4_flex = { version = "0.11.3", optional = true } +rayon = { version = "1.10.0", optional = true } +snap = { version = "1.1.1", optional = true } +tempfile = { version = "3.10.1", optional = true } +zstd = { version = "0.13.1", optional = true } [dev-dependencies] criterion = { version = "0.3", features = ["html_reports"] } quickcheck = "0.9" -rand = "0.8.4" -grenad-0-4 = { version = "0.4.1", package = "grenad" } +rand = "0.8.5" +grenad-0-4 = { version = "0.4.6", package = "grenad" } [[bench]] name = "index-levels" From a40a10f6e70ef4b1ec36d589397b8b32caa9e299 Mon Sep 17 00:00:00 2001 From: Tamo Date: Tue, 2 Jul 2024 15:22:45 +0200 Subject: [PATCH 2/2] prepare for release --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e356014..6d3af17 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "grenad" description = "Tools to sort, merge, write, and read immutable key-value pairs." -version = "0.4.6" +version = "0.4.7" authors = ["Kerollmops "] repository = "https://github.com/meilisearch/grenad" documentation = "https://docs.rs/grenad"