diff --git a/Cargo.lock b/Cargo.lock index ab29419..ea263e8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1370,9 +1370,9 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.11.14" +version = "0.11.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21eed90ec8570952d53b772ecf8f206aa1ec9a3d76b2521c56c42973f2d91ee9" +checksum = "0ba30cc2c0cd02af1222ed216ba659cdb2f879dfe3181852fe7c50b1d0005949" dependencies = [ "base64 0.21.0", "bytes", diff --git a/example-build/Cargo.toml b/example-build/Cargo.toml index a01d8b6..42a1192 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.14", features = ["json", "stream"] } +reqwest = { version = "0.11.15", 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 04c705f..ae832e6 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.14", features = ["json", "stream"] } +reqwest = { version = "0.11.15", 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/progenitor-client/Cargo.toml b/progenitor-client/Cargo.toml index bb61a95..6058cf0 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.27" percent-encoding = "2.2" -reqwest = { version = "0.11.14", default-features = false, features = ["json", "stream"] } +reqwest = { version = "0.11.15", 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 edffba5..f462152 100644 --- a/progenitor/Cargo.toml +++ b/progenitor/Cargo.toml @@ -32,6 +32,6 @@ futures = "0.3.27" percent-encoding = "2.2" rand = "0.8" regress = "0.5.0" -reqwest = { version = "0.11.14", features = ["json", "stream"] } +reqwest = { version = "0.11.15", features = ["json", "stream"] } schemars = { version = "0.8.12", features = ["uuid1"] } uuid = { version = "1.3", features = ["serde", "v4"] }