Update dependencies (#753)

This commit is contained in:
David Pedersen
2022-02-22 13:33:10 +01:00
parent 9bffd9d0db
commit 3238174b1c
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;
}