Skip to content

Commit bb96b43

Browse files
authored
Merge pull request #499 from caido/ef-update-reqwest
Update reqwest
2 parents 0c52c4c + aa82fd1 commit bb96b43

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

examples/github/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2018"
88
anyhow = "1.0"
99
graphql_client = { path = "../../graphql_client", features = ["reqwest-blocking"] }
1010
serde = "^1.0"
11-
reqwest = { version = "^0.11", features = ["json", "blocking"] }
11+
reqwest = { version = "0.12", features = ["json", "blocking"] }
1212
prettytable-rs = "^0.7"
1313
clap = { version = "^3.0", features = ["derive"] }
1414
log = "^0.4"

examples/hasura/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ anyhow = "1.0"
99
graphql_client = { path = "../../graphql_client", features = ["reqwest-blocking"] }
1010
serde = { version = "1.0", features = ["derive"] }
1111
serde_json = "1.0"
12-
reqwest = { version = "^0.11", features = ["json", "blocking"] }
12+
reqwest = { version = "0.12", features = ["json", "blocking"] }
1313
prettytable-rs = "0.7.0"
1414
log = "0.4.3"
1515
env_logger = "0.5.10"

examples/web/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ serde = { version = "1.0.67", features = ["derive"] }
1414
lazy_static = "1.0.1"
1515
js-sys = "0.3.6"
1616
wasm-bindgen-futures = "0.4.18"
17-
reqwest = "0.11.3"
17+
reqwest = "0.12"
1818

1919
[dependencies.web-sys]
2020
version = "0.3.6"

graphql_client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ serde_json = "1.0"
2020

2121
# Optional dependencies
2222
graphql_query_derive = { path = "../graphql_query_derive", version = "0.14.0", optional = true }
23-
reqwest-crate = { package = "reqwest", version = "^0.11", features = ["json"], default-features = false, optional = true }
23+
reqwest-crate = { package = "reqwest", version = ">=0.11, <=0.12", features = ["json"], default-features = false, optional = true }
2424

2525
[features]
2626
default = ["graphql_query_derive"]

graphql_client_cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ name = "graphql-client"
1212
path = "src/main.rs"
1313

1414
[dependencies]
15-
reqwest = { version = "^0.11", features = ["json", "blocking"] }
15+
reqwest = { version = "0.12", features = ["json", "blocking"] }
1616
graphql_client = { version = "0.14.0", path = "../graphql_client", default-features = false, features = ["graphql_query_derive", "reqwest-blocking"] }
1717
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.14.0" }
1818
clap = { version = "^3.0", features = ["derive"] }

0 commit comments

Comments
 (0)