Update Rust crate hmac to 0.13.0 #20

Closed
spacebot wants to merge 16 commits from renovate/hmac-0.x into v0
6 changed files with 20 additions and 21 deletions

View file

@ -3,7 +3,6 @@ name: Build and Test
on: on:
push: push:
branches: ["**"] branches: ["**"]
pull_request:
env: env:
DOCKER_TLS_CERTDIR: /certs DOCKER_TLS_CERTDIR: /certs

30
Cargo.lock generated
View file

@ -578,18 +578,18 @@ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
[[package]] [[package]]
name = "bytemuck" name = "bytemuck"
version = "1.23.1" version = "1.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c76a5792e44e4abe34d3abf15636779261d45a7450612059293d1d2cfc63422" checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
dependencies = [ dependencies = [
"bytemuck_derive", "bytemuck_derive",
] ]
[[package]] [[package]]
name = "bytemuck_derive" name = "bytemuck_derive"
version = "1.10.0" version = "1.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "441473f2b4b0459a68628c744bc61d23e730fb00128b841d30fa4bb3972257e4" checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@ -1788,9 +1788,9 @@ dependencies = [
[[package]] [[package]]
name = "log" name = "log"
version = "0.4.27" version = "0.4.29"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
[[package]] [[package]]
name = "lru" name = "lru"
@ -1930,9 +1930,9 @@ dependencies = [
[[package]] [[package]]
name = "once_cell" name = "once_cell"
version = "1.21.3" version = "1.21.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
[[package]] [[package]]
name = "openssl-probe" name = "openssl-probe"
@ -2140,7 +2140,7 @@ version = "0.1.0"
dependencies = [ dependencies = [
"bytemuck", "bytemuck",
"cfg-if", "cfg-if",
"hmac 0.12.1", "hmac 0.13.0",
"log", "log",
"md-5 0.10.6", "md-5 0.10.6",
"proxy-common", "proxy-common",
@ -2157,7 +2157,7 @@ dependencies = [
"async-trait", "async-trait",
"bytemuck", "bytemuck",
"cfg-if", "cfg-if",
"hmac 0.12.1", "hmac 0.13.0",
"log", "log",
"md-5 0.10.6", "md-5 0.10.6",
"once_cell", "once_cell",
@ -2316,7 +2316,7 @@ dependencies = [
"dotenv", "dotenv",
"futures", "futures",
"hex", "hex",
"hmac 0.12.1", "hmac 0.13.0",
"json", "json",
"log", "log",
"macros 0.0.0", "macros 0.0.0",
@ -3002,18 +3002,18 @@ dependencies = [
[[package]] [[package]]
name = "thiserror" name = "thiserror"
version = "2.0.12" version = "2.0.18"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708" checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
dependencies = [ dependencies = [
"thiserror-impl", "thiserror-impl",
] ]
[[package]] [[package]]
name = "thiserror-impl" name = "thiserror-impl"
version = "2.0.12" version = "2.0.18"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d" checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",

View file

@ -12,7 +12,7 @@ rc4 = "0.1.0"
log = "0.4.25" log = "0.4.25"
cfg-if = "1.0.4" cfg-if = "1.0.4"
proxy-common = {path = "../proxy-common"} proxy-common = {path = "../proxy-common"}
hmac = "0.12.1" hmac = "0.13.0"
md-5 = "^0.10.6" md-5 = "^0.10.6"
[features] [features]

View file

@ -6,7 +6,7 @@ edition = "2024"
[dependencies] [dependencies]
bytemuck = { version = "1.23.1", features = ["derive"] } bytemuck = { version = "1.23.1", features = ["derive"] }
tokio = { version = "1.47.0", features = ["full"] } tokio = { version = "1.47.0", features = ["full"] }
hmac = "0.12.1" hmac = "0.13.0"
md-5 = "^0.10.6" md-5 = "^0.10.6"
rc4 = "0.1.0" rc4 = "0.1.0"
v-byte-helpers = { git = "https://github.com/RusticMaple/VByteMacros", version = "0.1.1" } v-byte-helpers = { git = "https://github.com/RusticMaple/VByteMacros", version = "0.1.1" }

View file

@ -4,11 +4,11 @@
"packageRules": [ "packageRules": [
{ {
"matchUpdateTypes": ["minor", "patch"], "matchUpdateTypes": ["minor", "patch"],
"automerge": true "automerge": false
}, },
{ {
"matchUpdateTypes": ["major"], "matchUpdateTypes": ["major"],
"automerge": false "automerge": false
} }
] ]
} }

View file

@ -15,7 +15,7 @@ chrono = "0.4.39"
log = "0.4.25" log = "0.4.25"
rand = "0.8.5" rand = "0.8.5"
cfg-if = "1.0.4" cfg-if = "1.0.4"
hmac = "0.12.1" hmac = "0.13.0"
md-5 = "^0.10.6" md-5 = "^0.10.6"
tokio = { version = "1.43.0", features = ["full"] } tokio = { version = "1.43.0", features = ["full"] }
hex = "0.4.3" hex = "0.4.3"