diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 40e0363..eaa939f 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -925,7 +925,7 @@ dependencies = [ "git2", "jsonwebtoken", "oauth2", - "reqwest 0.12.9", + "reqwest 0.12.12", "serde", "serde_json", "sqlx", @@ -1689,9 +1689,9 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.12.9" +version = "0.12.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a77c62af46e79de0a562e1a9849205ffcb7fc1238876e9bd743357570e04046f" +checksum = "43e734407157c3c2034e0258f5e4473ddb361b1e85f95a66690d67264d7cd1da" dependencies = [ "base64 0.22.1", "bytes", @@ -1723,6 +1723,7 @@ dependencies = [ "tokio", "tokio-native-tls", "tokio-util", + "tower", "tower-service", "url", "wasm-bindgen", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index afc711e..1557fab 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -20,7 +20,7 @@ fs-err = { version = "3.0.0", features = ["tokio"] } git2 = "0.20.0" jsonwebtoken = "9.3.0" oauth2 = "4.4.2" -reqwest = { version = "0.12.9", features = ["stream", "json"] } +reqwest = { version = "0.12.12", features = ["stream", "json"] } serde = { version = "1.0.217", features = ["derive"] } serde_json = "1.0.135" sqlx = { version = "0.8.3", features = ["sqlite", "runtime-tokio"] }