Upgrade ahash to 0.8

This commit is contained in:
Dirkjan Ochtman 2022-08-15 10:07:22 +02:00
parent 747dd22098
commit c4864fe724
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ name = "instant_segment"
crate-type = ["cdylib"] crate-type = ["cdylib"]
[dependencies] [dependencies]
ahash = "0.7.2" ahash = "0.8"
bincode = "1.3.2" bincode = "1.3.2"
instant-segment = { version = "0.9", path = "../instant-segment", features = ["with-serde"] } instant-segment = { version = "0.9", path = "../instant-segment", features = ["with-serde"] }
pyo3 = { version = "0.16", features = ["extension-module"] } pyo3 = { version = "0.16", features = ["extension-module"] }

View File

@ -16,7 +16,7 @@ test-cases = []
with-serde = ["serde", "ahash/serde", "smartstring/serde"] with-serde = ["serde", "ahash/serde", "smartstring/serde"]
[dependencies] [dependencies]
ahash = "0.7.0" ahash = "0.8"
smartstring = "1" smartstring = "1"
serde = { version = "1.0.123", features = ["derive"], optional = true } serde = { version = "1.0.123", features = ["derive"], optional = true }