Skip to content

Commit 2196b13

Browse files
committed
chore: remove unused transitive reqwest dependency from xtask
This prevents automated updates of reqwest right now, and it seems unnecessary as our xtask commands compile just fine without the feature. #7478
1 parent d79ebdd commit 2196b13

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

xtask/Cargo.lock

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
619619
checksum = "a50cfdc7f34b7f01909d55c2dcb71d4c13cbcbb4a1605d6c8bd760d654c1144b"
620620
dependencies = [
621621
"graphql_query_derive",
622-
"reqwest",
623622
"serde",
624623
"serde_json",
625624
]

xtask/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ chrono = { version = "0.4.34", default-features = false, features = ["clock"] }
2020
console = "0.15.8"
2121
dialoguer = "0.11.0"
2222
flate2 = "1"
23-
graphql_client = { version = "0.14.0", features = ["reqwest-rustls"] }
23+
graphql_client = "0.14.0"
2424
itertools = "0.14.0"
2525
libc = "0.2"
2626
memorable-wordlist = "0.1.7"
@@ -29,6 +29,7 @@ once_cell = "1"
2929
regex = "1.10.3"
3030
reqwest = { version = "0.11", default-features = false, features = [
3131
"blocking",
32+
"json",
3233
"rustls-tls",
3334
"rustls-tls-native-roots"
3435
] }

0 commit comments

Comments
 (0)