Release 1.14.10

async-graphql@1.14.10
async-graphql-tide@1.14.10

Generated by cargo-workspaces
This commit is contained in:
Sunli 2020-06-01 19:42:47 +08:00
parent 983b8bacf9
commit b38130575c
4 changed files with 135 additions and 135 deletions

View File

@ -1,67 +1,67 @@
[package] [package]
name = "async-graphql" name = "async-graphql"
version = "1.14.9" version = "1.14.10"
authors = ["sunli <scott_s829@163.com>"] authors = ["sunli <scott_s829@163.com>"]
edition = "2018" edition = "2018"
description = "A GraphQL server library implemented in Rust" description = "A GraphQL server library implemented in Rust"
publish = true publish = true
license = "MIT/Apache-2.0" license = "MIT/Apache-2.0"
documentation = "https://docs.rs/async-graphql/" documentation = "https://docs.rs/async-graphql/"
homepage = "https://github.com/async-graphql/async-graphql" homepage = "https://github.com/async-graphql/async-graphql"
repository = "https://github.com/async-graphql/async-graphql" repository = "https://github.com/async-graphql/async-graphql"
keywords = ["futures", "async", "graphql"] keywords = ["futures", "async", "graphql"]
categories = ["network-programming", "asynchronous"] categories = ["network-programming", "asynchronous"]
readme = "README.md" readme = "README.md"
[features] [features]
default = ["bson", "url", "chrono-tz"] default = ["bson", "url", "chrono-tz"]
[dependencies] [dependencies]
async-graphql-parser = { path = "async-graphql-parser", version = "1.14.2" } async-graphql-parser = { path = "async-graphql-parser", version = "1.14.2" }
async-graphql-derive = { path = "async-graphql-derive", version = "1.14.0" } async-graphql-derive = { path = "async-graphql-derive", version = "1.14.0" }
anyhow = "1.0.26" anyhow = "1.0.26"
thiserror = "1.0.11" thiserror = "1.0.11"
async-trait = "0.1.30" async-trait = "0.1.30"
serde = "1.0.104" serde = "1.0.104"
serde_derive = "1.0.104" serde_derive = "1.0.104"
serde_json = "1.0.48" serde_json = "1.0.48"
bytes = "0.5.4" bytes = "0.5.4"
Inflector = "0.11.4" Inflector = "0.11.4"
base64 = "0.12.0" base64 = "0.12.0"
byteorder = "1.3.4" byteorder = "1.3.4"
futures = "0.3.0" futures = "0.3.0"
parking_lot = "0.10.0" parking_lot = "0.10.0"
chrono = "0.4.10" chrono = "0.4.10"
slab = "0.4.2" slab = "0.4.2"
once_cell = "1.3.1" once_cell = "1.3.1"
itertools = "0.9.0" itertools = "0.9.0"
tempfile = "3.1.0" tempfile = "3.1.0"
httparse = "1.3.4" httparse = "1.3.4"
mime = "0.3.16" mime = "0.3.16"
http = "0.2.1" http = "0.2.1"
fnv = "1.0.6" fnv = "1.0.6"
regex = "1.3.5" regex = "1.3.5"
tracing = "0.1.13" tracing = "0.1.13"
indexmap = "1.3.2" indexmap = "1.3.2"
async-stream = "0.2.1" async-stream = "0.2.1"
multer = "1.2.0" multer = "1.2.0"
log = "0.4.8" log = "0.4.8"
bson = { version = "0.14.1", optional = true } bson = { version = "0.14.1", optional = true }
uuid = { version = "0.8.1", features = ["v4"] } uuid = { version = "0.8.1", features = ["v4"] }
url = { version = "2.1.1", optional = true } url = { version = "2.1.1", optional = true }
chrono-tz = { version = "0.5.1", optional = true } chrono-tz = { version = "0.5.1", optional = true }
[dev-dependencies] [dev-dependencies]
async-std = { version = "1.5.0", features = ["attributes"] } async-std = { version = "1.5.0", features = ["attributes"] }
serde = "1.0.104" serde = "1.0.104"
serde_derive = "1.0.104" serde_derive = "1.0.104"
[workspace] [workspace]
members = [ members = [
"async-graphql-parser", "async-graphql-parser",
"async-graphql-derive", "async-graphql-derive",
"async-graphql-actix-web", "async-graphql-actix-web",
"async-graphql-warp", "async-graphql-warp",
"async-graphql-tide", "async-graphql-tide",
# "async-graphql-lambda", # "async-graphql-lambda",
] ]

View File

@ -1,23 +1,23 @@
[package] [package]
name = "async-graphql-actix-web" name = "async-graphql-actix-web"
version = "1.14.7" version = "1.14.7"
authors = ["sunli <scott_s829@163.com>"] authors = ["sunli <scott_s829@163.com>"]
edition = "2018" edition = "2018"
description = "async-graphql for actix-web" description = "async-graphql for actix-web"
publish = true publish = true
license = "MIT/Apache-2.0" license = "MIT/Apache-2.0"
documentation = "https://docs.rs/async-graphql/" documentation = "https://docs.rs/async-graphql/"
homepage = "https://github.com/async-graphql/async-graphql" homepage = "https://github.com/async-graphql/async-graphql"
repository = "https://github.com/async-graphql/async-graphql" repository = "https://github.com/async-graphql/async-graphql"
keywords = ["futures", "async", "graphql"] keywords = ["futures", "async", "graphql"]
categories = ["network-programming", "asynchronous"] categories = ["network-programming", "asynchronous"]
[dependencies] [dependencies]
async-graphql = { path = "..", version = "1.14.0" } async-graphql = { path = "..", version = "1.14.0" }
actix-web = "2.0.0" actix-web = "2.0.0"
actix-web-actors = "2.0.0" actix-web-actors = "2.0.0"
actix = "0.9.0" actix = "0.9.0"
actix-rt = "1.0.0" actix-rt = "1.0.0"
futures = "0.3.0" futures = "0.3.0"
bytes = "0.5.4" bytes = "0.5.4"
serde_json = "1.0.48" serde_json = "1.0.48"

View File

@ -1,25 +1,25 @@
[package] [package]
name = "async-graphql-tide" name = "async-graphql-tide"
version = "1.14.7" version = "1.14.10"
authors = ["vkill <vkill.net@gmail.com>"] authors = ["vkill <vkill.net@gmail.com>"]
edition = "2018" edition = "2018"
description = "async-graphql for tide" description = "async-graphql for tide"
publish = true publish = true
license = "MIT/Apache-2.0" license = "MIT/Apache-2.0"
documentation = "https://docs.rs/async-graphql/" documentation = "https://docs.rs/async-graphql/"
homepage = "https://github.com/async-graphql/async-graphql" homepage = "https://github.com/async-graphql/async-graphql"
repository = "https://github.com/async-graphql/async-graphql" repository = "https://github.com/async-graphql/async-graphql"
keywords = ["futures", "async", "graphql"] keywords = ["futures", "async", "graphql"]
categories = ["network-programming", "asynchronous"] categories = ["network-programming", "asynchronous"]
[dependencies] [dependencies]
async-graphql = { path = "..", version = "1.14.0" } async-graphql = { path = "..", version = "1.14.0" }
tide = "0.9.0" tide = "0.9.0"
async-trait = "0.1.30" async-trait = "0.1.30"
serde_json = "1.0.51" serde_json = "1.0.51"
futures = "0.3.4" futures = "0.3.4"
async-std = "1.5.0" async-std = "1.5.0"
[dev-dependencies] [dev-dependencies]
smol = { version = "0.1.10", features = ["tokio02"] } smol = { version = "0.1.10", features = ["tokio02"] }
reqwest = "0.10.4" reqwest = "0.10.4"

View File

@ -1,24 +1,24 @@
[package] [package]
name = "async-graphql-warp" name = "async-graphql-warp"
version = "1.14.9" version = "1.14.9"
authors = ["sunli <scott_s829@163.com>"] authors = ["sunli <scott_s829@163.com>"]
edition = "2018" edition = "2018"
description = "async-graphql for warp" description = "async-graphql for warp"
publish = true publish = true
license = "MIT/Apache-2.0" license = "MIT/Apache-2.0"
documentation = "https://docs.rs/async-graphql/" documentation = "https://docs.rs/async-graphql/"
homepage = "https://github.com/async-graphql/async-graphql" homepage = "https://github.com/async-graphql/async-graphql"
repository = "https://github.com/async-graphql/async-graphql" repository = "https://github.com/async-graphql/async-graphql"
keywords = ["futures", "async", "graphql"] keywords = ["futures", "async", "graphql"]
categories = ["network-programming", "asynchronous"] categories = ["network-programming", "asynchronous"]
[dependencies] [dependencies]
async-graphql = { path = "..", version = "1.14.0" } async-graphql = { path = "..", version = "1.14.0" }
warp = "0.2.2" warp = "0.2.2"
futures = "0.3.0" futures = "0.3.0"
bytes = "0.5.4" bytes = "0.5.4"
serde_json = "1.0.48" serde_json = "1.0.48"
hyper = "0.13.6" hyper = "0.13.6"
[dev-dependencies] [dev-dependencies]
tokio = { version = "0.2", features = ["macros"] } tokio = { version = "0.2", features = ["macros"] }