diff --git a/Cargo.toml b/Cargo.toml index cd9cb5b..38a348a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ tokio-stream = "0.1" uuid = { version = "1", features = ["v4"] } # HTTP client for GitHub API -reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "stream"] } +reqwest = { version = "0.13", default-features = false, features = ["json", "rustls-tls", "stream"] } # ZIP archive handling diff --git a/aikit-agent/Cargo.toml b/aikit-agent/Cargo.toml index 45174d8..fb6ecd4 100644 --- a/aikit-agent/Cargo.toml +++ b/aikit-agent/Cargo.toml @@ -11,7 +11,7 @@ categories = ["command-line-utilities"] [dependencies] serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "stream"] } +reqwest = { version = "0.13", default-features = false, features = ["json", "rustls-tls", "stream"] } tokio = { version = "1", features = ["full"] } thiserror = "2.0" tracing = "0.1" diff --git a/aikit-sdk/Cargo.toml b/aikit-sdk/Cargo.toml index 72b5202..d935c37 100644 --- a/aikit-sdk/Cargo.toml +++ b/aikit-sdk/Cargo.toml @@ -16,7 +16,7 @@ toml = "1.1" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" dirs = "6.0" -reqwest = { version = "0.12", default-features = false, features = ["blocking", "rustls-tls"] } +reqwest = { version = "0.13", default-features = false, features = ["blocking", "rustls-tls"] } zip = "2.3" tempfile = "3.12" uuid = { version = "1", features = ["v4"] }