Skip to content

Commit

Permalink
chore(deps): bump async-graphql and sqlx
Browse files Browse the repository at this point in the history
Signed-off-by: Gustavo Inacio <[email protected]>
  • Loading branch information
gusinacio committed Oct 4, 2024
1 parent f931744 commit a087234
Show file tree
Hide file tree
Showing 4 changed files with 68 additions and 73 deletions.
122 changes: 58 additions & 64 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ reqwest = { version = "0.12", features = [
], default-features = false }
serde = { version = "1.0.206", default-features = false }
serde_json = "1.0.124"
sqlx = { version = "0.7.2", features = [
sqlx = { version = "0.8.2", features = [
"bigdecimal",
"chrono",
"json",
Expand Down
4 changes: 2 additions & 2 deletions service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ tracing-subscriber = { workspace = true, features = ["fmt"] }
clap = { workspace = true, features = ["derive"] }
build-info.workspace = true
lazy_static.workspace = true
async-graphql = { version = "7.0.3", default-features = false }
async-graphql-axum = "7.0.3"
async-graphql = { version = "7.0.11", default-features = false }
async-graphql-axum = "7.0.11"
graphql = { git = "https://github.com/edgeandnode/toolshed", tag = "graphql-v0.3.0" }

[dev-dependencies]
Expand Down
13 changes: 7 additions & 6 deletions service/src/routes/status.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,13 @@ impl IntoRequestParameters for WrappedGraphQLRequest {
value.clone().into_json().unwrap(),
)
})),
extensions: Map::from_iter(self.0.extensions.into_iter().map(|(name, value)| {
(
name.as_str().to_string(),
value.clone().into_json().unwrap(),
)
})),
extensions: Map::from_iter(
self.0
.extensions
.0
.into_iter()
.map(|(name, value)| (name, value.into_json().unwrap())),
),
}
}
}
Expand Down

0 comments on commit a087234

Please sign in to comment.