Skip to content

Commit

Permalink
Release 5.0.2
Browse files Browse the repository at this point in the history
async-graphql@5.0.2
async-graphql-actix-web@5.0.2
async-graphql-axum@5.0.2
async-graphql-derive@5.0.2
async-graphql-parser@5.0.2
async-graphql-poem@5.0.2
async-graphql-rocket@5.0.2
async-graphql-tide@5.0.2
async-graphql-value@5.0.2
async-graphql-warp@5.0.2

Generated by cargo-workspaces
  • Loading branch information
sunli829 committed Nov 30, 2022
1 parent f8fab23 commit c351b62
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 21 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license = "MIT/Apache-2.0"
name = "async-graphql"
readme = "README.md"
repository = "https://github.com/async-graphql/async-graphql"
version = "5.0.1"
version = "5.0.2"

[features]
apollo_persisted_queries = ["lru", "sha2"]
Expand All @@ -29,9 +29,9 @@ unblock = ["blocking"]
dynamic-schema = []

[dependencies]
async-graphql-derive = { path = "derive", version = "5.0.1" }
async-graphql-parser = { path = "parser", version = "5.0.1" }
async-graphql-value = { path = "value", version = "5.0.1" }
async-graphql-derive = { path = "derive", version = "5.0.2" }
async-graphql-parser = { path = "parser", version = "5.0.2" }
async-graphql-value = { path = "value", version = "5.0.2" }

async-stream = "0.3.0"
async-trait = "0.1.48"
Expand Down
4 changes: 2 additions & 2 deletions derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "5.0.1"
version = "5.0.2"

[lib]
proc-macro = true

[dependencies]
async-graphql-parser = { path = "../parser", version = "5.0.1" }
async-graphql-parser = { path = "../parser", version = "5.0.2" }

Inflector = "0.11.4"
darling = "0.14.0"
Expand Down
4 changes: 2 additions & 2 deletions integrations/actix-web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "5.0.1"
version = "5.0.2"

[dependencies]
async-graphql = { path = "../..", version = "5.0.1", default-features = false }
async-graphql = { path = "../..", version = "5.0.2", default-features = false }

actix = "0.13.0"
actix-http = "3.1.0"
Expand Down
4 changes: 2 additions & 2 deletions integrations/axum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "5.0.1"
version = "5.0.2"

[dependencies]
async-graphql = { path = "../..", version = "5.0.1", default-features = false }
async-graphql = { path = "../..", version = "5.0.2", default-features = false }

async-trait = "0.1.51"
axum = { version = "0.6.0", features = ["ws", "headers"] }
Expand Down
4 changes: 2 additions & 2 deletions integrations/poem/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "5.0.1"
version = "5.0.2"

[dependencies]
async-graphql = { path = "../..", version = "5.0.1", default-features = false }
async-graphql = { path = "../..", version = "5.0.2", default-features = false }

futures-util = { version = "0.3.0", default-features = false }
poem = { version = "1.3.48", features = ["websocket"] }
Expand Down
4 changes: 2 additions & 2 deletions integrations/rocket/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "5.0.1"
version = "5.0.2"

[dependencies]
async-graphql = { path = "../..", version = "5.0.1", default-features = false }
async-graphql = { path = "../..", version = "5.0.2", default-features = false }

rocket = { version = "0.5.0-rc.2", default-features = false }
serde = "1.0.126"
Expand Down
4 changes: 2 additions & 2 deletions integrations/tide/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "5.0.1"
version = "5.0.2"

[features]
default = ["websocket"]
websocket = ["tide-websockets"]

[dependencies]
async-graphql = { path = "../..", version = "5.0.1", default-features = false }
async-graphql = { path = "../..", version = "5.0.2", default-features = false }

async-trait = "0.1.48"
futures-util = "0.3.0"
Expand Down
4 changes: 2 additions & 2 deletions integrations/warp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "5.0.1"
version = "5.0.2"

[dependencies]
async-graphql = { path = "../..", version = "5.0.1", default-features = false }
async-graphql = { path = "../..", version = "5.0.2", default-features = false }

futures-util = { version = "0.3.0", default-features = false, features = [
"sink",
Expand Down
4 changes: 2 additions & 2 deletions parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "5.0.1"
version = "5.0.2"

[dependencies]
async-graphql-value = { path = "../value", version = "5.0.1" }
async-graphql-value = { path = "../value", version = "5.0.2" }
pest = "2.4.1"
serde = { version = "1.0.125", features = ["derive"] }
serde_json = "1.0.64"
Expand Down
2 changes: 1 addition & 1 deletion value/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "async-graphql-value"
version = "5.0.1"
version = "5.0.2"
authors = ["sunli <scott_s829@163.com>", "Koxiaet"]
edition = "2021"
description = "GraphQL value for async-graphql"
Expand Down

0 comments on commit c351b62

Please sign in to comment.