Skip to content

Commit 862516b

Browse files
dependabot[bot]lutter
authored andcommitted
build(deps): bump reqwest from 0.12.23 to 0.13.2
Bumps [reqwest](https://github.com/seanmonstar/reqwest) from 0.12.23 to 0.13.2. - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](seanmonstar/reqwest@v0.12.23...v0.13.2) Also stop reexporting reqwest from the graph crate and use a workspace crate instead to make sure we use the same flags for all reqwest uses --- updated-dependencies: - dependency-name: reqwest dependency-version: 0.13.2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 0cfb6ee commit 862516b

File tree

14 files changed

+328
-96
lines changed

14 files changed

+328
-96
lines changed

Cargo.lock

Lines changed: 316 additions & 87 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ redis = { version = "1.0.3", features = [
7777
"tokio-comp",
7878
] }
7979
regex = "1.5.4"
80-
reqwest = "0.12.23"
80+
reqwest = { version = "0.13.2", features = ["json", "stream", "multipart", "gzip", "brotli", "deflate"] }
8181
serde = { version = "1.0.126", features = ["rc"] }
8282
serde_derive = "1.0.125"
8383
serde_json = { version = "1.0", features = ["arbitrary_precision"] }

chain/ethereum/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ prost-types = { workspace = true }
1414
anyhow = "1.0"
1515
tiny-keccak = "1.5.0"
1616
hex = "0.4.3"
17+
reqwest = { workspace = true }
1718
semver = "1.0.27"
1819
thiserror = { workspace = true }
1920
tokio = { workspace = true }

graph/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ diesel_derives = { workspace = true }
2626
chrono = "0.4.43"
2727
envconfig = { workspace = true }
2828
Inflector = "0.11.3"
29-
reqwest = { version = "0.12.23", features = ["json", "stream", "multipart", "gzip", "brotli", "deflate"] }
29+
reqwest = { workspace = true }
3030
ethabi = "17.2"
3131
hex = "0.4.3"
3232
http0 = { version = "0", package = "http" }

graph/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ pub mod prelude {
8686
pub use prost;
8787
pub use rand;
8888
pub use regex;
89-
pub use reqwest;
9089
pub use serde;
9190
pub use serde_derive::{Deserialize, Serialize};
9291
pub use serde_json;

node/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ graph-server-metrics = { path = "../server/metrics" }
3232
graph-store-postgres = { path = "../store/postgres" }
3333
graphman-server = { workspace = true }
3434
graphman = { workspace = true }
35+
reqwest = { workspace = true }
3536
serde = { workspace = true }
3637
shellexpand = "3.1.1"
3738
termcolor = "1.4.1"

node/src/manager/commands/deploy.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ use std::sync::Arc;
22

33
use graph::prelude::{
44
anyhow::{anyhow, bail, Result},
5-
reqwest,
65
serde_json::{json, Value},
76
SubgraphName, SubgraphStore,
87
};

server/http/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ async-trait = { workspace = true }
88
serde = { workspace = true }
99
graph = { path = "../../graph" }
1010
graph-graphql = { path = "../../graphql" }
11+
reqwest = { workspace = true }
1112

1213
[dev-dependencies]
1314
graph-core = { path = "../../core" }

server/http/tests/server.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ mod test {
8686
use super::*;
8787
use graph::http::header::{ACCESS_CONTROL_ALLOW_ORIGIN, CONTENT_TYPE};
8888
use graph::hyper::header::{ACCESS_CONTROL_ALLOW_HEADERS, ACCESS_CONTROL_ALLOW_METHODS};
89-
use graph::prelude::reqwest::{Client, Response};
89+
use reqwest::{Client, Response};
9090

9191
lazy_static! {
9292
static ref USERS: DeploymentHash = DeploymentHash::new("users").unwrap();

store/postgres/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ postgres = "0.19.1"
2525
openssl = { version = "0.10.75", features = ["vendored"] }
2626
postgres-openssl = "0.5.2"
2727
rand.workspace = true
28+
reqwest = { workspace = true }
2829
serde = { workspace = true }
2930
serde_json = { workspace = true }
3031
stable-hash_legacy = { git = "https://github.com/graphprotocol/stable-hash", branch = "old", package = "stable-hash" }

0 commit comments

Comments
 (0)