-
Notifications
You must be signed in to change notification settings - Fork 273
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(deps): update rust crate anyhow to v1.0.95
- Loading branch information
1 parent
d01fa60
commit e2cfebd
Showing
4 changed files
with
24 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "apollo-router-scaffold" | ||
version = "1.59.0" | ||
version = "1.58.1" | ||
authors = ["Apollo Graph, Inc. <[email protected]>"] | ||
edition = "2021" | ||
license = "Elastic-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
name = "apollo-router" | ||
version = "1.59.0" | ||
version = "1.58.1" | ||
authors = ["Apollo Graph, Inc. <[email protected]>"] | ||
repository = "https://github.com/apollographql/router/" | ||
documentation = "https://docs.rs/apollo-router" | ||
description = "A configurable, high-performance routing runtime for Apollo Federation 🚀" | ||
license = "Elastic-2.0" | ||
|
||
# renovate-automation: rustc version | ||
rust-version = "1.83.0" | ||
rust-version = "1.76.0" | ||
edition = "2021" | ||
build = "build/main.rs" | ||
|
||
|
@@ -44,6 +44,10 @@ dhat-ad-hoc = ["dhat"] | |
# alerted early when something is wrong instead of receiving an invalid result. | ||
failfast = [] | ||
|
||
# "fake" feature to disable V8 usage when building on docs.rs | ||
# See https://github.com/apollographql/federation-rs/pull/185 | ||
docs_rs = ["router-bridge/docs_rs"] | ||
|
||
# Enables the use of new telemetry features that are under development | ||
# and not yet ready for production use. | ||
telemetry_next = [] | ||
|
@@ -55,11 +59,14 @@ hyper_header_limits = [] | |
# is set when ci builds take place. It allows us to disable some tests when CI is running on certain platforms. | ||
ci = [] | ||
|
||
[package.metadata.docs.rs] | ||
features = ["docs_rs"] | ||
|
||
[dependencies] | ||
access-json = "0.1.0" | ||
anyhow = "1.0.86" | ||
apollo-compiler.workspace = true | ||
apollo-federation = { path = "../apollo-federation", version = "=1.59.0" } | ||
apollo-federation = { path = "../apollo-federation", version = "=1.58.1" } | ||
arc-swap = "1.6.0" | ||
async-channel = "1.9.0" | ||
async-compression = { version = "0.4.6", features = [ | ||
|
@@ -110,6 +117,7 @@ jsonpath_lib = "0.3.0" | |
jsonpath-rust = "0.3.5" | ||
jsonschema = { version = "0.17.1", default-features = false } | ||
jsonwebtoken = "9.3.0" | ||
lazy_static = "1.4.0" | ||
libc = "0.2.155" | ||
linkme = "0.3.27" | ||
lru = "0.12.3" | ||
|
@@ -149,6 +157,8 @@ opentelemetry-aws = "0.8.0" | |
# opentelemetry-datadog = { version = "0.8.0", features = ["reqwest-client"] } | ||
rmp = "0.8" | ||
# END TEMP DATADOG | ||
# Pin rowan until update to rust 1.77 | ||
rowan = "=0.15.15" | ||
opentelemetry-http = "0.9.0" | ||
opentelemetry-jaeger = { version = "0.19.0", features = [ | ||
"collector_client", | ||
|
@@ -181,6 +191,10 @@ rand = "0.8.5" | |
rhai = { version = "1.19.0", features = ["sync", "serde", "internals"] } | ||
regex = "1.10.5" | ||
reqwest.workspace = true | ||
|
||
# note: this dependency should _always_ be pinned, prefix the version with an `=` | ||
router-bridge = "=0.6.4+v2.9.3" | ||
|
||
rust-embed = { version = "8.4.0", features = ["include-exclude"] } | ||
rustls = "0.21.12" | ||
rustls-native-certs = "0.6.3" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters