diff --git a/CHANGELOG.md b/CHANGELOG.md index 27233068..4db61437 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,7 +39,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Dependencies: Update pyo3 from 0.19.2 to 0.20.3 ([@dirksammel](https://github.com/dirksammel), [@QuantumDancer](https://github.com/QuantumDancer)) - Dependencies: Update pyo3-asyncio from 0.19 to 0.20 ([@dirksammel](https://github.com/dirksammel)) - Dependencies: Update pytest from 8.0.0 to 8.1.1 ([@dirksammel](https://github.com/dirksammel)) -- Dependencies: Update reqwest from 0.11.24 to 0.12.0 ([@QuantumDancer](https://github.com/QuantumDancer)) +- Dependencies: Update reqwest from 0.11.24 to 0.12.1 ([@QuantumDancer](https://github.com/QuantumDancer)) - Dependencies: Update serde from 1.0.196 to 1.0.197 ([@QuantumDancer](https://github.com/QuantumDancer)) - Dependencies: Update serde-aux from 4.4.0 to 4.5.0 ([@QuantumDancer](https://github.com/QuantumDancer)) - Dependencies: Update serde_json from 1.0.113 to 1.0.114 ([@QuantumDancer](https://github.com/QuantumDancer)) diff --git a/Cargo.lock b/Cargo.lock index 52b687be..fde18201 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2245,9 +2245,9 @@ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" [[package]] name = "reqwest" -version = "0.12.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "58b48d98d932f4ee75e541614d32a7f44c889b72bd9c2e04d95edd135989df88" +checksum = "e333b1eb9fe677f6893a9efcb0d277a2d3edd83f358a236b657c32301dc6e5f6" dependencies = [ "base64 0.21.7", "bytes", diff --git a/auditor/Cargo.toml b/auditor/Cargo.toml index e0dcbd25..4a6fe46f 100644 --- a/auditor/Cargo.toml +++ b/auditor/Cargo.toml @@ -52,7 +52,7 @@ secrecy = { version = "0.8", features = ["serde"] } unicode-segmentation = "1" fake = { version = "2.9", features = ["chrono"] } rand = "0.8" -reqwest = { version = "0.12.0", default-features = false, features = ["json", "rustls-tls", "blocking"] } +reqwest = { version = "0.12.1", default-features = false, features = ["json", "rustls-tls", "blocking"] } anyhow = "1" regex = "1" num-traits = "^0.2"