Merge branch 'error-type' of https://github.com/sunli829/async-graphql into error-type

This commit is contained in:
Nicolai Unrein 2020-04-02 14:43:30 +02:00
commit 4b398ce919
4 changed files with 12 additions and 5 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "async-graphql"
version = "1.6.8"
version = "1.7.0"
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.6.8" }
async-graphql-derive = { path = "async-graphql-derive", version = "1.7.0" }
graphql-parser = "=0.2.3"
anyhow = "1.0.26"
thiserror = "1.0.11"

View File

@ -37,6 +37,13 @@ cargo run --example actix-web
Open `http://localhost:8000` in browser
## Benchmark
```shell script
git clone https://github.com/sunli829/graphql-benchmark
cargo run --release
```
## Features
* Fully support async/await

View File

@ -1,6 +1,6 @@
[package]
name = "async-graphql-actix-web"
version = "0.6.11"
version = "0.7.0"
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.6.8" }
async-graphql = { path = "..", version = "1.7.0" }
actix-web = "2.0.0"
actix-multipart = "0.2.0"
actix-web-actors = "2.0.0"

View File

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