diff --git a/bot_controller/Cargo.toml b/bot_controller/Cargo.toml index 1fba05b..09d6e71 100644 --- a/bot_controller/Cargo.toml +++ b/bot_controller/Cargo.toml @@ -13,7 +13,7 @@ axum = { version = "0.6.2" } common = { path = "../common" } clap = {version="4.3.0", features = ["cargo"]} md5 = "0.7.0" -reqwest = { version = "0.11.12", default-features = false, features = ["json", "rustls-tls"] } +reqwest = { version = "0.12.12", default-features = false, features = ["json", "rustls-tls"] } tokio = { version = "1.0", features=["macros", "signal", "rt-multi-thread"] } tokio-util = { version = "0.7.4", features = ["io"]} tower = { version = "0.4", features = ["timeout"] } diff --git a/common/Cargo.toml b/common/Cargo.toml index beef404..7c1bb61 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -14,7 +14,7 @@ config = { git = "https://github.com/mehcode/config-rs.git", default-features=fa netstat2 = { git = "https://github.com/danielvschoor/netstat2-rs.git" } parking_lot = { version = "0.12.1"} rand = "0.8.5" -reqwest = { version = "0.11.12", default-features = false, features = ["json", "multipart", "rustls-tls"] } +reqwest = { version = "0.12.12", default-features = false, features = ["json", "multipart", "rustls-tls"] } serde = { version = "^1.0", features = ["derive"] } serde-error = "0.1.2" serde_json = "1.0.87" diff --git a/sc2_controller/Cargo.toml b/sc2_controller/Cargo.toml index 710b9d7..1dd0d5f 100644 --- a/sc2_controller/Cargo.toml +++ b/sc2_controller/Cargo.toml @@ -10,7 +10,7 @@ async-process = "2.0.0" axum = { version = "0.6.2" } common = { path="../common" } clap = {version="4.3.0", features = ["cargo"]} -reqwest = { version = "0.11.12", default-features = false, features = ["json", "rustls-tls"] } +reqwest = { version = "0.12.12", default-features = false, features = ["json", "rustls-tls"] } tempfile = "3.3.0" tokio = { version = "1.0", features=["macros", "rt-multi-thread", "signal"] } tokio-util = { version = "0.7.4", features=["io"]}