diff --git a/typesense/Cargo.toml b/typesense/Cargo.toml index d0202aa..508da22 100644 --- a/typesense/Cargo.toml +++ b/typesense/Cargo.toml @@ -34,7 +34,7 @@ web-time = { workspace = true } # required for wasm32 target # native-only dependencies [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -reqwest = { version = "0.12", features = ["json"] } +reqwest = { version = "0.13", features = ["json"] } reqwest-middleware = { version = "0.4.2"} # wasm deps diff --git a/typesense_codegen/Cargo.toml b/typesense_codegen/Cargo.toml index 873c3da..afa8054 100644 --- a/typesense_codegen/Cargo.toml +++ b/typesense_codegen/Cargo.toml @@ -9,7 +9,7 @@ license.workspace = true [dependencies] bon = { workspace = true } -reqwest = { version = "0.12", default-features = false, features = ["json"] } +reqwest = { version = "0.13", default-features = false, features = ["json"] } serde = { workspace = true } serde_json = { workspace = true } serde_repr = { workspace = true } diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 645e345..614e801 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -8,7 +8,7 @@ edition.workspace = true anyhow = { workspace = true } clap = { workspace = true } indexmap = { workspace = true } -reqwest = { version = "0.12", features = ["blocking"] } # "blocking" is simpler for scripts +reqwest = { version = "0.13", features = ["blocking"] } # "blocking" is simpler for scripts serde = { workspace = true } serde_yaml = { workspace = true } tokio = { workspace = true}