From c4864fe724754d239e21c9bfd4f188e00752028c Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Mon, 15 Aug 2022 10:07:22 +0200 Subject: [PATCH] Upgrade ahash to 0.8 --- instant-segment-py/Cargo.toml | 2 +- instant-segment/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/instant-segment-py/Cargo.toml b/instant-segment-py/Cargo.toml index 0e64699..9439d5a 100644 --- a/instant-segment-py/Cargo.toml +++ b/instant-segment-py/Cargo.toml @@ -16,7 +16,7 @@ name = "instant_segment" crate-type = ["cdylib"] [dependencies] -ahash = "0.7.2" +ahash = "0.8" bincode = "1.3.2" instant-segment = { version = "0.9", path = "../instant-segment", features = ["with-serde"] } pyo3 = { version = "0.16", features = ["extension-module"] } diff --git a/instant-segment/Cargo.toml b/instant-segment/Cargo.toml index 4445089..1edb350 100644 --- a/instant-segment/Cargo.toml +++ b/instant-segment/Cargo.toml @@ -16,7 +16,7 @@ test-cases = [] with-serde = ["serde", "ahash/serde", "smartstring/serde"] [dependencies] -ahash = "0.7.0" +ahash = "0.8" smartstring = "1" serde = { version = "1.0.123", features = ["derive"], optional = true }