This commit is contained in:
sunli 2020-04-21 20:49:32 +08:00
parent f7a2fe5fa5
commit 297d1e7cbb
5 changed files with 7 additions and 8 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "async-graphql"
version = "1.9.7"
version = "1.9.8"
authors = ["sunli <scott_s829@163.com>"]
edition = "2018"
description = "The GraphQL server library implemented by rust"
@ -18,7 +18,7 @@ default = ["bson", "uuid", "url", "chrono-tz", "validators"]
validators = ["regex"]
[dependencies]
async-graphql-derive = { path = "async-graphql-derive", version = "1.9.7" }
async-graphql-derive = { path = "async-graphql-derive", version = "1.9.8" }
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.0.7"
version = "1.0.8"
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.7" }
async-graphql = { path = "..", version = "1.9.8" }
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.7"
version = "1.9.8"
authors = ["sunli <scott_s829@163.com>"]
edition = "2018"
description = "Macros for async-graphql"

View File

@ -1,6 +1,6 @@
[package]
name = "async-graphql-warp"
version = "1.0.8"
version = "1.0.9"
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.7" }
async-graphql = { path = "..", version = "1.9.8" }
warp = "0.2.2"
futures = "0.3.0"
bytes = "0.5.4"

View File

@ -410,7 +410,6 @@ pub use async_graphql_derive::InputObject;
/// |-------------|---------------------------|----------|----------|
/// | name | Object name | string | Y |
/// | desc | Object description | string | Y |
/// | implements | The interface implements another interface | String | Y |
///
/// # Field parameters
///