This is an automated email from the ASF dual-hosted git repository. hgruszecki pushed a commit to branch zero-copy-no-batching in repository https://gitbox.apache.org/repos/asf/iggy.git
commit d510935aad4e4856c716cef26b8cfa0ad8057d6c Author: Hubert Gruszecki <[email protected]> AuthorDate: Thu Mar 20 17:31:03 2025 +0100 add memmap2 to deps --- Cargo.lock | 1 + server/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 78bbc4a3..a1bb2766 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4761,6 +4761,7 @@ dependencies = [ "iggy", "jsonwebtoken", "lending-iterator", + "memmap2", "mimalloc", "mockall", "moka", diff --git a/server/Cargo.toml b/server/Cargo.toml index 605191d3..8319d50b 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -106,6 +106,7 @@ tracing-subscriber = { version = "0.3.19", features = ["fmt", "env-filter"] } twox-hash = { version = "2.1.0", features = ["xxhash32"] } ulid = "1.2.0" uuid = { version = "1.14.0", features = ["v7", "fast-rng", "zerocopy"] } +memmap2 = "0.9.5" [dev-dependencies] mockall = "0.13.1"
