Release 4.0.8

async-graphql@4.0.8
async-graphql-actix-web@4.0.8
async-graphql-axum@4.0.8
async-graphql-derive@4.0.8
async-graphql-parser@4.0.8
async-graphql-poem@4.0.8
async-graphql-rocket@4.0.8
async-graphql-tide@4.0.8
async-graphql-value@4.0.8
async-graphql-warp@4.0.8

Generated by cargo-workspaces
This commit is contained in:
Sunli 2022-08-12 12:48:37 +08:00
parent a5ad2cd03c
commit 1f479c5211
11 changed files with 23 additions and 23 deletions

View File

@ -10,7 +10,7 @@ license = "MIT/Apache-2.0"
name = "async-graphql"
readme = "README.md"
repository = "https://github.com/async-graphql/async-graphql"
version = "4.0.7"
version = "4.0.8"
[features]
apollo_persisted_queries = ["lru", "sha2"]
@ -28,9 +28,9 @@ tracing = ["tracinglib", "tracing-futures"]
unblock = ["blocking"]
[dependencies]
async-graphql-derive = { path = "derive", version = "4.0.7" }
async-graphql-parser = { path = "parser", version = "4.0.7" }
async-graphql-value = { path = "value", version = "4.0.7" }
async-graphql-derive = { path = "derive", version = "4.0.8" }
async-graphql-parser = { path = "parser", version = "4.0.8" }
async-graphql-value = { path = "value", version = "4.0.8" }
async-stream = "0.3.0"
async-trait = "0.1.48"

View File

@ -9,13 +9,13 @@ keywords = ["futures", "async", "graphql"]
license = "MIT/Apache-2.0"
name = "async-graphql-derive"
repository = "https://github.com/async-graphql/async-graphql"
version = "4.0.7"
version = "4.0.8"
[lib]
proc-macro = true
[dependencies]
async-graphql-parser = { path = "../parser", version = "4.0.7" }
async-graphql-parser = { path = "../parser", version = "4.0.8" }
Inflector = "0.11.4"
darling = "0.14.0"

View File

@ -9,10 +9,10 @@ keywords = ["futures", "async", "graphql"]
license = "MIT/Apache-2.0"
name = "async-graphql-actix-web"
repository = "https://github.com/async-graphql/async-graphql"
version = "4.0.7"
version = "4.0.8"
[dependencies]
async-graphql = { path = "../..", version = "4.0.7", default-features = false }
async-graphql = { path = "../..", version = "4.0.8", default-features = false }
actix = "0.13.0"
actix-http = "3.1.0"

View File

@ -9,10 +9,10 @@ keywords = ["futures", "async", "graphql", "axum"]
license = "MIT/Apache-2.0"
name = "async-graphql-axum"
repository = "https://github.com/async-graphql/async-graphql"
version = "4.0.7"
version = "4.0.8"
[dependencies]
async-graphql = { path = "../..", version = "4.0.7", default-features = false }
async-graphql = { path = "../..", version = "4.0.8", default-features = false }
async-trait = "0.1.51"
axum = { version = "0.5.1", features = ["ws", "headers"] }

View File

@ -9,10 +9,10 @@ keywords = ["futures", "async", "graphql", "poem"]
license = "MIT/Apache-2.0"
name = "async-graphql-poem"
repository = "https://github.com/async-graphql/async-graphql"
version = "4.0.7"
version = "4.0.8"
[dependencies]
async-graphql = { path = "../..", version = "4.0.7", default-features = false }
async-graphql = { path = "../..", version = "4.0.8", default-features = false }
futures-util = { version = "0.3.0", default-features = false }
poem = { version = "1.3.0", features = ["websocket"] }

View File

@ -9,10 +9,10 @@ keywords = ["futures", "async", "graphql", "rocket"]
license = "MIT/Apache-2.0"
name = "async-graphql-rocket"
repository = "https://github.com/async-graphql/async-graphql"
version = "4.0.7"
version = "4.0.8"
[dependencies]
async-graphql = { path = "../..", version = "4.0.7", default-features = false }
async-graphql = { path = "../..", version = "4.0.8", default-features = false }
rocket = { version = "0.5.0-rc.2", default-features = false }
serde = "1.0.126"

View File

@ -9,14 +9,14 @@ keywords = ["futures", "async", "graphql"]
license = "MIT/Apache-2.0"
name = "async-graphql-tide"
repository = "https://github.com/async-graphql/async-graphql"
version = "4.0.7"
version = "4.0.8"
[features]
default = ["websocket"]
websocket = ["tide-websockets"]
[dependencies]
async-graphql = { path = "../..", version = "4.0.7", default-features = false }
async-graphql = { path = "../..", version = "4.0.8", default-features = false }
async-trait = "0.1.48"
futures-util = "0.3.0"

View File

@ -9,10 +9,10 @@ keywords = ["futures", "async", "graphql"]
license = "MIT/Apache-2.0"
name = "async-graphql-warp"
repository = "https://github.com/async-graphql/async-graphql"
version = "4.0.7"
version = "4.0.8"
[dependencies]
async-graphql = { path = "../..", version = "4.0.7", default-features = false }
async-graphql = { path = "../..", version = "4.0.8", default-features = false }
futures-util = { version = "0.3.0", default-features = false, features = [
"sink",

View File

@ -9,10 +9,10 @@ keywords = ["futures", "async", "graphql"]
license = "MIT/Apache-2.0"
name = "async-graphql-parser"
repository = "https://github.com/async-graphql/async-graphql"
version = "4.0.7"
version = "4.0.8"
[dependencies]
async-graphql-value = { path = "../value", version = "4.0.7" }
async-graphql-value = { path = "../value", version = "4.0.8" }
pest = "2.2.1"
serde = { version = "1.0.125", features = ["derive"] }
serde_json = "1.0.64"

View File

@ -76,9 +76,9 @@ use futures_channel::oneshot;
use futures_timer::Delay;
use futures_util::future::BoxFuture;
#[cfg(feature = "tracing")]
use tracinglib as tracing;
use tracing::{info_span, instrument, Instrument};
#[cfg(feature = "tracing")]
use tracing::{instrument, info_span, Instrument};
use tracinglib as tracing;
#[allow(clippy::type_complexity)]
struct ResSender<K: Send + Sync + Hash + Eq + Clone + 'static, T: Loader<K>> {

View File

@ -1,6 +1,6 @@
[package]
name = "async-graphql-value"
version = "4.0.7"
version = "4.0.8"
authors = ["sunli <scott_s829@163.com>", "Koxiaet"]
edition = "2021"
description = "GraphQL value for async-graphql"