Release 4.0.0-alpha.2

async-graphql@4.0.0-alpha.2
async-graphql-actix-web@4.0.0-alpha.2
async-graphql-axum@4.0.0-alpha.2
async-graphql-derive@4.0.0-alpha.2
async-graphql-parser@4.0.0-alpha.2
async-graphql-poem@4.0.0-alpha.2
async-graphql-rocket@4.0.0-alpha.2
async-graphql-tide@4.0.0-alpha.2
async-graphql-value@4.0.0-alpha.2
async-graphql-warp@4.0.0-alpha.2

Generated by cargo-workspaces
This commit is contained in:
sunli829 2022-05-14 16:46:57 +08:00
parent 965ac6ae90
commit 132d0c84e2
10 changed files with 176 additions and 176 deletions

View File

@ -1,110 +1,110 @@
[package]
name = "async-graphql"
version = "4.0.0-alpha.1"
authors = ["sunli <scott_s829@163.com>", "Koxiaet"]
edition = "2021"
description = "A GraphQL server library implemented in Rust"
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/async-graphql/"
homepage = "https://github.com/async-graphql/async-graphql"
repository = "https://github.com/async-graphql/async-graphql"
keywords = ["futures", "async", "graphql"]
categories = ["network-programming", "asynchronous"]
description = "A GraphQL server library implemented in Rust"
documentation = "https://docs.rs/async-graphql/"
edition = "2021"
homepage = "https://github.com/async-graphql/async-graphql"
keywords = ["futures", "async", "graphql"]
license = "MIT/Apache-2.0"
name = "async-graphql"
readme = "README.md"
repository = "https://github.com/async-graphql/async-graphql"
version = "4.0.0-alpha.2"
[features]
default = []
apollo_tracing = ["chrono"]
apollo_persisted_queries = ["lru", "sha2"]
unblock = ["blocking"]
string_number = []
dataloader = ["futures-timer", "futures-channel", "lru"]
tracing = ["tracinglib", "tracing-futures"]
decimal = ["rust_decimal"]
apollo_tracing = ["chrono"]
cbor = ["serde_cbor"]
chrono-duration = ["chrono", "iso8601-duration"]
dataloader = ["futures-timer", "futures-channel", "lru"]
decimal = ["rust_decimal"]
default = []
password-strength-validator = ["zxcvbn"]
string_number = []
tokio-sync = ["tokio"]
tracing = ["tracinglib", "tracing-futures"]
unblock = ["blocking"]
[dependencies]
async-graphql-derive = { path = "derive", version = "4.0.0-alpha.1" }
async-graphql-value = { path = "value", version = "4.0.0-alpha.1" }
async-graphql-parser = { path = "parser", version = "4.0.0-alpha.1" }
async-graphql-derive = { path = "derive", version = "4.0.0-alpha.2" }
async-graphql-parser = { path = "parser", version = "4.0.0-alpha.2" }
async-graphql-value = { path = "value", version = "4.0.0-alpha.2" }
async-stream = "0.3.0"
async-trait = "0.1.48"
bytes = { version = "1.0.1", features = ["serde"] }
fast_chemail = "0.9.6"
fnv = "1.0.7"
futures-util = { version = "0.3.0", default-features = false, features = [
"io",
"sink",
"io",
"sink",
] }
http = "0.2.3"
indexmap = "1.6.2"
mime = "0.3.15"
multer = "2.0.0"
num-traits = "0.2.14"
once_cell = "1.7.2"
pin-project-lite = "0.2.6"
regex = "1.5.5"
serde = { version = "1.0.125", features = ["derive"] }
serde_json = "1.0.64"
thiserror = "1.0.24"
static_assertions = "1.1.0"
http = "0.2.3"
multer = "2.0.0"
tempfile = "3.2.0"
bytes = { version = "1.0.1", features = ["serde"] }
mime = "0.3.15"
num-traits = "0.2.14"
fast_chemail = "0.9.6"
thiserror = "1.0.24"
# Feature optional dependencies
bson = { version = "2.0.0", optional = true, features = ["chrono-0_4"] }
chrono = { version = "0.4.19", optional = true, default-features = false, features = [
"clock",
"std",
"clock",
"std",
] }
chrono-tz = { version = "0.6.1", optional = true }
hashbrown = { version = "0.12.0", optional = true }
iso8601-duration = { version = "0.1.0", optional = true }
log = { version = "0.4.16", optional = true }
secrecy = { version = "0.8.0", optional = true }
tracinglib = { version = "0.1.25", optional = true, package = "tracing" }
tracing-futures = { version = "0.2.5", optional = true, features = [
"std-future",
"futures-03",
] }
opentelemetry = { version = "0.17.0", optional = true, default-features = false, features = [
"trace",
] }
uuid = { version = "1.0.0", optional = true, features = ["v4", "serde"] }
uuid08 = { version = "0.8", package = "uuid", optional = true, features = [
"v4",
"serde",
"trace",
] }
rust_decimal = { version = "1.14.3", optional = true }
url = { version = "2.2.1", optional = true }
secrecy = { version = "0.8.0", optional = true }
smol_str = { version = "0.1.21", optional = true }
time = { version = "0.3.5", optional = true, features = [
"parsing",
"formatting",
"macros",
"parsing",
"formatting",
"macros",
] }
tokio = { version = "1.17.0", features = ["sync"], optional = true }
tracing-futures = { version = "0.2.5", optional = true, features = [
"std-future",
"futures-03",
] }
tracinglib = { version = "0.1.25", optional = true, package = "tracing" }
url = { version = "2.2.1", optional = true }
uuid = { version = "1.0.0", optional = true, features = ["v4", "serde"] }
uuid08 = { version = "0.8", package = "uuid", optional = true, features = [
"v4",
"serde",
] }
# Non-feature optional dependencies
blocking = { version = "1.0.2", optional = true }
lru = { version = "0.7.1", optional = true }
sha2 = { version = "0.10.2", optional = true }
futures-timer = { version = "3.0.2", optional = true }
futures-channel = { version = "0.3.13", optional = true }
futures-timer = { version = "3.0.2", optional = true }
lru = { version = "0.7.1", optional = true }
serde_cbor = { version = "0.11.1", optional = true }
sha2 = { version = "0.10.2", optional = true }
zxcvbn = { version = "2.1.2", optional = true }
[dev-dependencies]
tokio = { version = "1.4.0", features = [
"macros",
"rt-multi-thread",
"sync",
"time",
] }
futures-channel = "0.3.13"
tokio = { version = "1.4.0", features = [
"macros",
"rt-multi-thread",
"sync",
"time",
] }
[package.metadata.docs.rs]
all-features = true
@ -112,13 +112,13 @@ rustdoc-args = ["--cfg", "docsrs"]
[workspace]
members = [
"value",
"parser",
"derive",
"integrations/poem",
"integrations/actix-web",
"integrations/rocket",
"integrations/warp",
"integrations/axum",
"integrations/tide",
"value",
"parser",
"derive",
"integrations/poem",
"integrations/actix-web",
"integrations/rocket",
"integrations/warp",
"integrations/axum",
"integrations/tide",
]

View File

@ -1,30 +1,30 @@
[package]
name = "async-graphql-derive"
version = "4.0.0-alpha.1"
authors = ["sunli <scott_s829@163.com>", "Koxiaet"]
edition = "2021"
description = "Macros for async-graphql"
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/async-graphql/"
homepage = "https://github.com/async-graphql/async-graphql"
repository = "https://github.com/async-graphql/async-graphql"
keywords = ["futures", "async", "graphql"]
categories = ["network-programming", "asynchronous"]
description = "Macros for async-graphql"
documentation = "https://docs.rs/async-graphql/"
edition = "2021"
homepage = "https://github.com/async-graphql/async-graphql"
keywords = ["futures", "async", "graphql"]
license = "MIT/Apache-2.0"
name = "async-graphql-derive"
repository = "https://github.com/async-graphql/async-graphql"
version = "4.0.0-alpha.2"
[lib]
proc-macro = true
[dependencies]
async-graphql-parser = { path = "../parser", version = "4.0.0-alpha.1" }
proc-macro2 = "1.0.24"
syn = { version = "1.0.64", features = [
"full",
"extra-traits",
"visit-mut",
"visit",
] }
quote = "1.0.9"
Inflector = "0.11.4"
proc-macro-crate = "1.0.0"
async-graphql-parser = { path = "../parser", version = "4.0.0-alpha.2" }
darling = "0.13.0"
proc-macro-crate = "1.0.0"
proc-macro2 = "1.0.24"
quote = "1.0.9"
syn = { version = "1.0.64", features = [
"full",
"extra-traits",
"visit-mut",
"visit",
] }
thiserror = "1.0.24"

View File

@ -1,34 +1,34 @@
[package]
name = "async-graphql-actix-web"
version = "4.0.0-alpha.1"
authors = ["sunli <scott_s829@163.com>", "Koxiaet"]
edition = "2021"
description = "async-graphql for actix-web"
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/async-graphql-actix-web/"
homepage = "https://github.com/async-graphql/async-graphql"
repository = "https://github.com/async-graphql/async-graphql"
keywords = ["futures", "async", "graphql"]
categories = ["network-programming", "asynchronous"]
description = "async-graphql for actix-web"
documentation = "https://docs.rs/async-graphql-actix-web/"
edition = "2021"
homepage = "https://github.com/async-graphql/async-graphql"
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.0-alpha.2"
[dependencies]
async-graphql = { path = "../..", version = "4.0.0-alpha.1" }
async-graphql = { path = "../..", version = "4.0.0-alpha.2" }
actix = "0.13.0"
actix-http = "3.0.1"
actix-web = { version = "4.0.1", default-features = false }
actix-web-actors = "4.1.0"
async-channel = "1.6.1"
futures-channel = "0.3.13"
futures-util = { version = "0.3.0", default-features = false }
serde_cbor = { version = "0.11.2", optional = true }
serde_json = "1.0.64"
serde_urlencoded = "0.7.0"
futures-channel = "0.3.13"
thiserror = "1.0.30"
serde_cbor = { version = "0.11.2", optional = true }
[features]
default = []
cbor = ["serde_cbor"]
default = []
[dev-dependencies]
actix-rt = "2.6.0"

View File

@ -1,25 +1,25 @@
[package]
name = "async-graphql-axum"
version = "4.0.0-alpha.1"
authors = ["sunli <scott_s829@163.com>"]
edition = "2021"
description = "async-graphql for axum"
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/async-graphql-axum/"
homepage = "https://github.com/async-graphql/async-graphql"
repository = "https://github.com/async-graphql/async-graphql"
keywords = ["futures", "async", "graphql", "axum"]
categories = ["network-programming", "asynchronous"]
description = "async-graphql for axum"
documentation = "https://docs.rs/async-graphql-axum/"
edition = "2021"
homepage = "https://github.com/async-graphql/async-graphql"
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.0-alpha.2"
[dependencies]
async-graphql = { path = "../..", version = "4.0.0-alpha.1" }
async-graphql = { path = "../..", version = "4.0.0-alpha.2" }
async-trait = "0.1.51"
axum = { version = "0.5.1", features = ["ws", "headers"] }
bytes = "1.0.1"
futures-util = "0.3.0"
http-body = "0.4.2"
serde_json = "1.0.66"
serde_urlencoded = "0.7.0"
tokio-util = { version = "0.7.1", features = ["io", "compat"] }
futures-util = "0.3.0"
tower-service = "0.3"

View File

@ -1,20 +1,20 @@
[package]
name = "async-graphql-poem"
version = "4.0.0-alpha.1"
authors = ["sunli <scott_s829@163.com>"]
edition = "2021"
description = "async-graphql for poem"
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/async-graphql-poem/"
homepage = "https://github.com/async-graphql/async-graphql"
repository = "https://github.com/async-graphql/async-graphql"
keywords = ["futures", "async", "graphql", "poem"]
categories = ["network-programming", "asynchronous"]
description = "async-graphql for poem"
documentation = "https://docs.rs/async-graphql-poem/"
edition = "2021"
homepage = "https://github.com/async-graphql/async-graphql"
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.0-alpha.2"
[dependencies]
async-graphql = { path = "../..", version = "4.0.0-alpha.1" }
async-graphql = { path = "../..", version = "4.0.0-alpha.2" }
poem = { version = "1.2.2", features = ["websocket"] }
futures-util = { version = "0.3.0", default-features = false }
poem = { version = "1.2.2", features = ["websocket"] }
serde_json = "1.0.66"
tokio-util = { version = "0.6.7", features = ["compat"] }

View File

@ -1,22 +1,22 @@
[package]
name = "async-graphql-rocket"
version = "4.0.0-alpha.1"
authors = ["Daniel Wiesenberg <daniel@simplificAR.io>"]
edition = "2021"
description = "async-graphql for Rocket.rs"
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/async-graphql/"
homepage = "https://github.com/async-graphql/async-graphql"
repository = "https://github.com/async-graphql/async-graphql"
keywords = ["futures", "async", "graphql", "rocket"]
categories = ["network-programming", "asynchronous"]
description = "async-graphql for Rocket.rs"
documentation = "https://docs.rs/async-graphql/"
edition = "2021"
homepage = "https://github.com/async-graphql/async-graphql"
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.0-alpha.2"
[dependencies]
async-graphql = { path = "../..", version = "4.0.0-alpha.1" }
async-graphql = {path = "../..", version = "4.0.0-alpha.2"}
rocket = { version = "0.5.0-rc.1", default-features = false }
rocket = {version = "0.5.0-rc.1", default-features = false}
serde = "1.0.126"
serde_json = "1.0.64"
tokio-util = { version = "0.6.7", default-features = false, features = [
"compat",
] }
tokio-util = {version = "0.6.7", default-features = false, features = [
"compat",
]}

View File

@ -1,37 +1,37 @@
[package]
name = "async-graphql-tide"
version = "4.0.0-alpha.1"
authors = ["vkill <vkill.net@gmail.com>", "sunli <scott_s829@163.com>"]
edition = "2021"
description = "async-graphql for tide"
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/async-graphql-tide/"
homepage = "https://github.com/async-graphql/async-graphql"
repository = "https://github.com/async-graphql/async-graphql"
keywords = ["futures", "async", "graphql"]
categories = ["network-programming", "asynchronous"]
description = "async-graphql for tide"
documentation = "https://docs.rs/async-graphql-tide/"
edition = "2021"
homepage = "https://github.com/async-graphql/async-graphql"
keywords = ["futures", "async", "graphql"]
license = "MIT/Apache-2.0"
name = "async-graphql-tide"
repository = "https://github.com/async-graphql/async-graphql"
version = "4.0.0-alpha.2"
[features]
default = ["websocket"]
websocket = ["tide-websockets"]
[dependencies]
async-graphql = { path = "../..", version = "4.0.0-alpha.1" }
async-graphql = { path = "../..", version = "4.0.0-alpha.2" }
async-trait = "0.1.48"
futures-util = "0.3.0"
serde_json = "1.0.64"
tide = { version = "0.16.0", default-features = false, features = [
"h1-server",
"h1-server",
] }
tide-websockets = { version = "0.4.0", optional = true }
[dev-dependencies]
# Surf lacks multipart support
reqwest = { version = "0.11.2", default-features = false, features = [
"json",
"multipart",
] }
async-std = { version = "1.9.0", features = ["attributes", "tokio1"] }
reqwest = { version = "0.11.2", default-features = false, features = [
"json",
"multipart",
] }
serde_json = "1.0.64"

View File

@ -1,29 +1,29 @@
[package]
name = "async-graphql-warp"
version = "4.0.0-alpha.1"
authors = ["sunli <scott_s829@163.com>", "Koxiaet"]
edition = "2021"
description = "async-graphql for warp"
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/async-graphql-warp/"
homepage = "https://github.com/async-graphql/async-graphql"
repository = "https://github.com/async-graphql/async-graphql"
keywords = ["futures", "async", "graphql"]
categories = ["network-programming", "asynchronous"]
description = "async-graphql for warp"
documentation = "https://docs.rs/async-graphql-warp/"
edition = "2021"
homepage = "https://github.com/async-graphql/async-graphql"
keywords = ["futures", "async", "graphql"]
license = "MIT/Apache-2.0"
name = "async-graphql-warp"
repository = "https://github.com/async-graphql/async-graphql"
version = "4.0.0-alpha.2"
[dependencies]
async-graphql = { path = "../..", version = "4.0.0-alpha.1" }
async-graphql = { path = "../..", version = "4.0.0-alpha.2" }
warp = { version = "0.3.0", default-features = false, features = ["websocket"] }
futures-util = { version = "0.3.0", default-features = false, features = [
"sink",
"sink",
] }
serde_json = "1.0.64"
warp = { version = "0.3.0", default-features = false, features = ["websocket"] }
[dev-dependencies]
tokio = { version = "1.4.0", default-features = false, features = [
"macros",
"rt-multi-thread",
"time",
] }
async-stream = "0.3.0"
tokio = { version = "1.4.0", default-features = false, features = [
"macros",
"rt-multi-thread",
"time",
] }

View File

@ -1,21 +1,21 @@
[package]
name = "async-graphql-parser"
version = "4.0.0-alpha.1"
authors = ["sunli <scott_s829@163.com>", "Koxiaet"]
edition = "2021"
description = "GraphQL query parser for async-graphql"
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/async-graphql/"
homepage = "https://github.com/async-graphql/async-graphql"
repository = "https://github.com/async-graphql/async-graphql"
keywords = ["futures", "async", "graphql"]
categories = ["network-programming", "asynchronous"]
description = "GraphQL query parser for async-graphql"
documentation = "https://docs.rs/async-graphql/"
edition = "2021"
homepage = "https://github.com/async-graphql/async-graphql"
keywords = ["futures", "async", "graphql"]
license = "MIT/Apache-2.0"
name = "async-graphql-parser"
repository = "https://github.com/async-graphql/async-graphql"
version = "4.0.0-alpha.2"
[dependencies]
async-graphql-value = { path = "../value", version = "4.0.0-alpha.1" }
async-graphql-value = { path = "../value", version = "4.0.0-alpha.2" }
pest = "2.1.3"
serde_json = "1.0.64"
serde = { version = "1.0.125", features = ["derive"] }
serde_json = "1.0.64"
[dev-dependencies]
pest_generator = "2.1.3"

View File

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