Update dependencies (#753)

This commit is contained in:
David Pedersen
2022-02-12 17:16:14 +00:00
committed by GitHub
parent 1e51ea9423
commit 409a6651f5
10 changed files with 24 additions and 25 deletions
+2 -2
View File
@@ -8,6 +8,6 @@ publish = false
axum = { path = "../../axum" }
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version="0.3", features = ["env-filter"] }
async-graphql = "2.9.9"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
async-graphql = "3.0"
slab = "0.4.3"
+1 -1
View File
@@ -181,7 +181,7 @@ async fn query_characters(
if let Some(after) = after {
if after >= characters.len() {
return Ok(Connection::new(false, false));
return Ok::<_, async_graphql::Error>(Connection::new(false, false));
}
start = after + 1;
}