From e2bfbc2203121c3052ddd8ddcdcaeeb0e63daa6c Mon Sep 17 00:00:00 2001 From: Arnaud Gourlay Date: Mon, 15 May 2023 18:25:55 +0200 Subject: [PATCH] update wal with memmap2 0.6.1 (#1896) --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- lib/collection/Cargo.toml | 2 +- lib/storage/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 16a78a8438..3d86b0a15f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4706,7 +4706,7 @@ dependencies = [ [[package]] name = "wal" version = "0.1.2" -source = "git+https://github.com/qdrant/wal.git?rev=660ccf17b117e7a0667a17177e96fdaeb166851b#660ccf17b117e7a0667a17177e96fdaeb166851b" +source = "git+https://github.com/qdrant/wal.git?rev=f3029ad0e1632d5e375db55695e33121df54aa5c#f3029ad0e1632d5e375db55695e33121df54aa5c" dependencies = [ "byteorder", "crc", @@ -4715,7 +4715,7 @@ dependencies = [ "env_logger", "fs4", "log", - "memmap2 0.5.10", + "memmap2 0.6.1", "rand 0.8.5", "rand_distr", "rustix 0.37.4", diff --git a/Cargo.toml b/Cargo.toml index 2e9dadf7ee..b24b9e1d00 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,7 +42,7 @@ clap = { version = "4.2.7", features = ["derive"] } serde_cbor = { version = "0.11.2"} uuid = { version = "1.3", features = ["v4", "serde"] } sys-info = "0.9.1" -wal = { git = "https://github.com/qdrant/wal.git", rev = "660ccf17b117e7a0667a17177e96fdaeb166851b" } +wal = { git = "https://github.com/qdrant/wal.git", rev = "f3029ad0e1632d5e375db55695e33121df54aa5c" } config = "~0.13.3" diff --git a/lib/collection/Cargo.toml b/lib/collection/Cargo.toml index a060f20778..c8e295ad0e 100644 --- a/lib/collection/Cargo.toml +++ b/lib/collection/Cargo.toml @@ -23,7 +23,7 @@ serde = { version = "~1.0", features = ["derive"] } serde_json = { version = "~1.0", features = ["std"] } serde_cbor = "0.11.2" rmp-serde = "~1.1" -wal = { git = "https://github.com/qdrant/wal.git", rev = "660ccf17b117e7a0667a17177e96fdaeb166851b"} +wal = { git = "https://github.com/qdrant/wal.git", rev = "f3029ad0e1632d5e375db55695e33121df54aa5c"} ordered-float = "3.7" hashring = "0.3.0" tinyvec = { version = "1.6.0", features = ["alloc"] } diff --git a/lib/storage/Cargo.toml b/lib/storage/Cargo.toml index 0d939401df..1bbfb0ec77 100644 --- a/lib/storage/Cargo.toml +++ b/lib/storage/Cargo.toml @@ -14,7 +14,7 @@ env_logger = "0.10.0" num_cpus = "1.15" thiserror = "1.0" rand = "0.8.5" -wal = { git = "https://github.com/qdrant/wal.git", rev = "660ccf17b117e7a0667a17177e96fdaeb166851b" } +wal = { git = "https://github.com/qdrant/wal.git", rev = "f3029ad0e1632d5e375db55695e33121df54aa5c" } tokio = { version = "~1.28", features = ["rt-multi-thread"] } serde = { version = "~1.0", features = ["derive"] } serde_json = "~1.0"