This commit is contained in:
sunli 2020-04-27 18:54:22 +08:00
parent 124bf2e831
commit fee4393b3b
6 changed files with 10 additions and 10 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "async-graphql"
version = "1.9.22"
version = "1.9.23"
authors = ["sunli <scott_s829@163.com>"]
edition = "2018"
description = "The GraphQL server library implemented by rust"
@ -17,7 +17,7 @@ readme = "README.md"
default = ["bson", "uuid", "url", "chrono-tz"]
[dependencies]
async-graphql-derive = { path = "async-graphql-derive", version = "1.9.22" }
async-graphql-derive = { path = "async-graphql-derive", version = "1.9.23" }
graphql-parser = "=0.2.3"
anyhow = "1.0.26"
thiserror = "1.0.11"

View File

@ -1,6 +1,6 @@
[package]
name = "async-graphql-actix-web"
version = "1.1.11"
version = "1.1.12"
authors = ["sunli <scott_s829@163.com>"]
edition = "2018"
description = "async-graphql for actix-web"
@ -13,7 +13,7 @@ keywords = ["futures", "async", "graphql"]
categories = ["network-programming", "asynchronous"]
[dependencies]
async-graphql = { path = "..", version = "1.9.22" }
async-graphql = { path = "..", version = "1.9.23" }
actix-web = "2.0.0"
actix-web-actors = "2.0.0"
actix = "0.9.0"

View File

@ -1,6 +1,6 @@
[package]
name = "async-graphql-derive"
version = "1.9.22"
version = "1.9.23"
authors = ["sunli <scott_s829@163.com>"]
edition = "2018"
description = "Macros for async-graphql"

View File

@ -169,7 +169,7 @@ pub fn Scalar(args: TokenStream, input: TokenStream) -> TokenStream {
}
#[allow(clippy::ptr_arg)]
#[async_trait::async_trait]
#[#crate_name::async_trait::async_trait]
impl #generic #crate_name::OutputValueType for #self_ty #where_clause {
async fn resolve(
value: &Self,

View File

@ -1,6 +1,6 @@
[package]
name = "async-graphql-tide"
version = "1.0.3"
version = "1.0.4"
authors = ["vkill <vkill.net@gmail.com>"]
edition = "2018"
description = "async-graphql for tide"
@ -13,7 +13,7 @@ keywords = ["futures", "async", "graphql"]
categories = ["network-programming", "asynchronous"]
[dependencies]
async-graphql = { path = "..", version = "1.9.22" }
async-graphql = { path = "..", version = "1.9.23" }
tide = "0.8"
http-types = "1.2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "async-graphql-warp"
version = "1.1.10"
version = "1.1.11"
authors = ["sunli <scott_s829@163.com>"]
edition = "2018"
description = "async-graphql for warp"
@ -13,7 +13,7 @@ keywords = ["futures", "async", "graphql"]
categories = ["network-programming", "asynchronous"]
[dependencies]
async-graphql = { path = "..", version = "1.9.22" }
async-graphql = { path = "..", version = "1.9.23" }
warp = "0.2.2"
futures = "0.3.0"
bytes = "0.5.4"