diff --git a/Cargo.lock b/Cargo.lock index 81d2975..3160909 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -28,6 +28,18 @@ dependencies = [ "version_check", ] +[[package]] +name = "ahash" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57e6e951cfbb2db8de1828d49073a113a29fd7117b1596caa781a258c7e38d72" +dependencies = [ + "cfg-if", + "getrandom", + "once_cell", + "version_check", +] + [[package]] name = "aho-corasick" version = "0.7.19" @@ -58,7 +70,7 @@ dependencies = [ name = "aquatic_common" version = "0.2.0" dependencies = [ - "ahash", + "ahash 0.8.0", "anyhow", "aquatic_toml_config", "arc-swap", @@ -1246,7 +1258,7 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dd6912e67cabcb397683537cadc80a38136fdea7702430ede1a43207940697a6" dependencies = [ - "ahash", + "ahash 0.7.6", "backtrace", "bitflags 1.3.2", "bitmaps", @@ -1313,7 +1325,7 @@ version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" dependencies = [ - "ahash", + "ahash 0.7.6", "serde", ] @@ -2604,7 +2616,7 @@ version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dcbc16ddba161afc99e14d1713a453747a2b07fc097d2009f4c300ec99286105" dependencies = [ - "ahash", + "ahash 0.7.6", "atoi", "bitflags 1.3.2", "byteorder", diff --git a/aquatic_common/Cargo.toml b/aquatic_common/Cargo.toml index 759cccb..631c1fd 100644 --- a/aquatic_common/Cargo.toml +++ b/aquatic_common/Cargo.toml @@ -17,7 +17,7 @@ rustls = ["dep:rustls", "rustls-pemfile"] [dependencies] aquatic_toml_config = { version = "0.2.0", path = "../aquatic_toml_config" } -ahash = "0.7" +ahash = "0.8" anyhow = "1" arc-swap = "1" duplicate = "0.4"