diff --git a/Cargo.lock b/Cargo.lock index d16f8ca..013beab 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7,7 +7,7 @@ name = "TinyUFO" version = "0.8.0" source = "git+https://github.com/raskell-io/pingora.git?rev=5c23fe7#5c23fe704ea6abb7842d5d33e537f34ba13b573d" dependencies = [ - "ahash 0.8.12", + "ahash", "crossbeam-queue", "crossbeam-skiplist", "flurry", @@ -48,17 +48,6 @@ dependencies = [ "cpufeatures 0.2.17", ] -[[package]] -name = "ahash" -version = "0.7.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" -dependencies = [ - "getrandom 0.2.17", - "once_cell", - "version_check", -] - [[package]] name = "ahash" version = "0.8.12" @@ -1741,7 +1730,7 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cf5efcf77a4da27927d3ab0509dec5b0954bb3bc59da5a1de9e52642ebd4cdf9" dependencies = [ - "ahash 0.8.12", + "ahash", "num_cpus", "parking_lot", "seize", @@ -2077,9 +2066,6 @@ name = "hashbrown" version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" -dependencies = [ - "ahash 0.7.8", -] [[package]] name = "hashbrown" @@ -2792,11 +2778,11 @@ dependencies = [ [[package]] name = "jsonschema" -version = "0.44.0" +version = "0.45.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "267fb27be492e66ab147d2ce0233d88ae465b93c3565016e73998729bf3fe60f" +checksum = "6f29616f6e19415398eb186964fb7cbbeef572c79bede3622a8277667924bbe3" dependencies = [ - "ahash 0.8.12", + "ahash", "bytecount", "data-encoding", "email_address", @@ -3749,7 +3735,7 @@ name = "pingora-cache" version = "0.8.0" source = "git+https://github.com/raskell-io/pingora.git?rev=5c23fe7#5c23fe704ea6abb7842d5d33e537f34ba13b573d" dependencies = [ - "ahash 0.8.12", + "ahash", "async-trait", "blake2", "bstr", @@ -3785,7 +3771,7 @@ name = "pingora-core" version = "0.8.0" source = "git+https://github.com/raskell-io/pingora.git?rev=5c23fe7#5c23fe704ea6abb7842d5d33e537f34ba13b573d" dependencies = [ - "ahash 0.8.12", + "ahash", "async-trait", "brotli 3.5.0", "bstr", @@ -3821,7 +3807,7 @@ dependencies = [ "serde", "serde_yaml", "sfv", - "socket2 0.5.10", + "socket2 0.6.2", "strum", "strum_macros", "tokio", @@ -3876,7 +3862,7 @@ name = "pingora-limits" version = "0.8.0" source = "git+https://github.com/raskell-io/pingora.git?rev=5c23fe7#5c23fe704ea6abb7842d5d33e537f34ba13b573d" dependencies = [ - "ahash 0.8.12", + "ahash", ] [[package]] @@ -3906,7 +3892,7 @@ version = "0.8.0" source = "git+https://github.com/raskell-io/pingora.git?rev=5c23fe7#5c23fe704ea6abb7842d5d33e537f34ba13b573d" dependencies = [ "arrayvec", - "hashbrown 0.12.3", + "hashbrown 0.16.1", "parking_lot", "rand 0.8.5", ] @@ -3917,7 +3903,7 @@ version = "0.8.0" source = "git+https://github.com/raskell-io/pingora.git?rev=5c23fe7#5c23fe704ea6abb7842d5d33e537f34ba13b573d" dependencies = [ "TinyUFO", - "ahash 0.8.12", + "ahash", "async-trait", "log", "parking_lot", @@ -4195,7 +4181,7 @@ version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "343d3bd7056eda839b03204e68deff7d1b13aba7af2b2fd16890697274262ee7" dependencies = [ - "heck 0.4.1", + "heck 0.5.0", "itertools 0.14.0", "log", "multimap", @@ -4600,11 +4586,11 @@ dependencies = [ [[package]] name = "referencing" -version = "0.44.0" +version = "0.45.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "12ecd0f3daefd4faff2e0821310c18e6e9d1fd00550bbd7e5a59d78184a071bc" +checksum = "b8a618c14f8ba29d8193bb55e2bf13e4fb2b1115313ecb7ae94b43100c7ac7d5" dependencies = [ - "ahash 0.8.12", + "ahash", "fluent-uri", "getrandom 0.3.4", "hashbrown 0.16.1", diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index 468f87d..a747cbd 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -48,7 +48,7 @@ directories = { version = "6.0", optional = true } envy = { version = "0.4", optional = true } # Schema validation (not WASM-compatible - pulls in getrandom) -jsonschema = { version = "0.44", optional = true } +jsonschema = { version = "0.45", optional = true } # Utilities once_cell = "1.20" diff --git a/crates/proxy/Cargo.toml b/crates/proxy/Cargo.toml index ab2eb62..60835df 100644 --- a/crates/proxy/Cargo.toml +++ b/crates/proxy/Cargo.toml @@ -87,7 +87,7 @@ maxminddb = "0.27" ip2location = "0.6" # Schema validation -jsonschema = "0.44" +jsonschema = "0.45" serde_yaml = "0.9" # Static file serving