Skip to content

Commit

Permalink
fix(deps): update rust crate anyhow to v1.0.95
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Dec 22, 2024
1 parent d01fa60 commit e2cfebd
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 10 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
version = 4

[[package]]
name = "Inflector"
Expand Down Expand Up @@ -168,9 +168,9 @@ dependencies = [

[[package]]
name = "anyhow"
version = "1.0.86"
version = "1.0.95"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04"

[[package]]
name = "apollo-compiler"
Expand Down Expand Up @@ -439,7 +439,7 @@ dependencies = [

[[package]]
name = "apollo-router-scaffold"
version = "1.59.0"
version = "1.58.1"
dependencies = [
"anyhow",
"cargo-scaffold",
Expand Down
2 changes: 1 addition & 1 deletion apollo-router-scaffold/Cargo.toml
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"
Expand Down
20 changes: 17 additions & 3 deletions apollo-router/Cargo.toml
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"

Expand Down Expand Up @@ -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 = []
Expand All @@ -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 = [
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions xtask/Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ dependencies = [

[[package]]
name = "anyhow"
version = "1.0.86"
version = "1.0.95"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04"

[[package]]
name = "ascii"
Expand Down

0 comments on commit e2cfebd

Please sign in to comment.