diff --git a/Cargo.lock b/Cargo.lock index 52e69f1..c16ea98 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1451,9 +1451,9 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.11.16" +version = "0.11.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "27b71749df584b7f4cac2c426c127a7c785a5106cc98f7a8feb044115f0fa254" +checksum = "13293b639a097af28fc8a90f22add145a9c954e49d77da06263d58cf44d5fb91" dependencies = [ "base64", "bytes", diff --git a/example-build/Cargo.toml b/example-build/Cargo.toml index f53856a..604edaf 100644 --- a/example-build/Cargo.toml +++ b/example-build/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] chrono = { version = "0.4", features = ["serde"] } progenitor-client = { path = "../progenitor-client" } -reqwest = { version = "0.11.16", features = ["json", "stream"] } +reqwest = { version = "0.11.17", features = ["json", "stream"] } base64 = "0.21" rand = "0.8" serde = { version = "1.0", features = ["derive"] } diff --git a/example-macro/Cargo.toml b/example-macro/Cargo.toml index 6648fc2..e538666 100644 --- a/example-macro/Cargo.toml +++ b/example-macro/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] chrono = { version = "0.4", features = ["serde"] } progenitor = { path = "../progenitor" } -reqwest = { version = "0.11.16", features = ["json", "stream"] } +reqwest = { version = "0.11.17", features = ["json", "stream"] } schemars = { version = "0.8.12", features = ["uuid1"] } serde = { version = "1.0", features = ["derive"] } uuid = { version = "1.3", features = ["serde", "v4"] } diff --git a/example-wasm/Cargo.toml b/example-wasm/Cargo.toml index 332c35f..39b7f7e 100644 --- a/example-wasm/Cargo.toml +++ b/example-wasm/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] chrono = { version = "0.4", features = ["serde"] } progenitor-client = { path = "../progenitor-client" } -reqwest = { version = "0.11.16", features = ["json", "stream"] } +reqwest = { version = "0.11.17", features = ["json", "stream"] } base64 = "0.21" serde = { version = "1.0", features = ["derive"] } uuid = { version = "1.3", features = ["serde", "v4", "js"] } diff --git a/progenitor-client/Cargo.toml b/progenitor-client/Cargo.toml index 243bd7a..1fe2119 100644 --- a/progenitor-client/Cargo.toml +++ b/progenitor-client/Cargo.toml @@ -10,7 +10,7 @@ description = "An OpenAPI client generator - client support" bytes = "1.4.0" futures-core = "0.3.28" percent-encoding = "2.2" -reqwest = { version = "0.11.16", default-features = false, features = ["json", "stream"] } +reqwest = { version = "0.11.17", default-features = false, features = ["json", "stream"] } serde = "1.0" serde_json = "1.0" serde_urlencoded = "0.7.1" diff --git a/progenitor/Cargo.toml b/progenitor/Cargo.toml index b8c330e..e6b6d1e 100644 --- a/progenitor/Cargo.toml +++ b/progenitor/Cargo.toml @@ -33,6 +33,6 @@ futures = "0.3.27" percent-encoding = "2.2" rand = "0.8" regress = "0.6.0" -reqwest = { version = "0.11.16", features = ["json", "stream"] } +reqwest = { version = "0.11.17", features = ["json", "stream"] } schemars = { version = "0.8.12", features = ["uuid1"] } uuid = { version = "1.3", features = ["serde", "v4"] }