From 0b7fc2ec4b4cd2d65b6c20645c9fffd71f58997d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Dec 2025 02:22:33 +0000 Subject: [PATCH] chore(deps): bump maxminddb from 0.17.3 to 0.27.0 in /rust Bumps [maxminddb](https://github.com/oschwald/maxminddb-rust) from 0.17.3 to 0.27.0. - [Release notes](https://github.com/oschwald/maxminddb-rust/releases) - [Changelog](https://github.com/oschwald/maxminddb-rust/blob/main/CHANGELOG.md) - [Commits](https://github.com/oschwald/maxminddb-rust/compare/0.17.3...v0.27.0) --- updated-dependencies: - dependency-name: maxminddb dependency-version: 0.27.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- rust/Cargo.lock | 13 +++++++++++-- rust/common/geoip/Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 3728698439b29..213cbae8b6071 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -3345,6 +3345,12 @@ version = "2.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" +[[package]] +name = "ipnetwork" +version = "0.21.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf370abdafd54d13e54a620e8c3e1145f28e46cc9d704bc6d94414559df41763" + [[package]] name = "is-macro" version = "0.3.7" @@ -3649,12 +3655,15 @@ checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" [[package]] name = "maxminddb" -version = "0.17.3" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d13fa57adcc4f3aca91e511b3cdaa58ed8cbcbf97f20e342a11218c76e127f51" +checksum = "7ef0551fc3e7345a6c854c1026b0ddada1e443e51f4fb4cdcf86cc1a71d4b337" dependencies = [ + "ipnetwork", "log", + "memchr", "serde", + "thiserror 2.0.12", ] [[package]] diff --git a/rust/common/geoip/Cargo.toml b/rust/common/geoip/Cargo.toml index 4773cfdcf2f99..21e59e3fcb17a 100644 --- a/rust/common/geoip/Cargo.toml +++ b/rust/common/geoip/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] serde_json.workspace = true -maxminddb = "0.17" +maxminddb = "0.27" thiserror.workspace = true tracing.workspace = true tracing.features = ["log"]