diff --git a/Cargo.lock b/Cargo.lock index f67cb51..359ba4a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1461,9 +1461,9 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.11.17" +version = "0.11.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13293b639a097af28fc8a90f22add145a9c954e49d77da06263d58cf44d5fb91" +checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55" dependencies = [ "base64", "bytes", diff --git a/example-build/Cargo.toml b/example-build/Cargo.toml index f20f2c3..808f485 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.17", features = ["json", "stream"] } +reqwest = { version = "0.11.18", 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 e538666..bc3e87f 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.17", features = ["json", "stream"] } +reqwest = { version = "0.11.18", 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 109f7d9..68bf85d 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.17", features = ["json", "stream"] } +reqwest = { version = "0.11.18", 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 1fe2119..c3a50b0 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.17", default-features = false, features = ["json", "stream"] } +reqwest = { version = "0.11.18", 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 63a46db..e13c6f7 100644 --- a/progenitor/Cargo.toml +++ b/progenitor/Cargo.toml @@ -22,7 +22,7 @@ futures = "0.3.27" percent-encoding = "2.2" rand = "0.8" regress = "0.6.0" -reqwest = { version = "0.11.17", features = ["json", "stream"] } +reqwest = { version = "0.11.18", features = ["json", "stream"] } schemars = { version = "0.8.12", features = ["uuid1"] } serde = { version = "1.0", features = ["derive"] } uuid = { version = "1.3", features = ["serde", "v4"] }