Skip to content

Commit

Permalink
Merge pull request #1237 from lazareviczoran/workspace-dependencies-d…
Browse files Browse the repository at this point in the history
…isable-default-features-of-async-graphql
  • Loading branch information
sunli829 committed Feb 16, 2023
2 parents a4b2c4c + e705f7d commit 8638910
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 8 deletions.
4 changes: 1 addition & 3 deletions integrations/actix-web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ repository = "https://github.com/async-graphql/async-graphql"
version = "5.0.6"

[dependencies]
async-graphql = { workspace = true, default-features = false, features = [
"playground",
] }
async-graphql = { workspace = true, features = ["playground"] }

actix = "0.13.0"
actix-http = "3.1.0"
Expand Down
2 changes: 1 addition & 1 deletion integrations/axum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repository = "https://github.com/async-graphql/async-graphql"
version = "5.0.6"

[dependencies]
async-graphql = { workspace = true, default-features = false }
async-graphql = { workspace = true }

async-trait.workspace = true
axum = { version = "0.6.0", features = ["ws", "headers"] }
Expand Down
2 changes: 1 addition & 1 deletion integrations/poem/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repository = "https://github.com/async-graphql/async-graphql"
version = "5.0.6"

[dependencies]
async-graphql = { workspace = true, default-features = false }
async-graphql = { workspace = true }

futures-util = { workspace = true, default-features = false }
poem = { version = "1.3.48", features = ["websocket"] }
Expand Down
2 changes: 1 addition & 1 deletion integrations/rocket/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repository = "https://github.com/async-graphql/async-graphql"
version = "5.0.6"

[dependencies]
async-graphql = { workspace = true, default-features = false }
async-graphql = { workspace = true }

rocket = { version = "0.5.0-rc.2", default-features = false }
serde.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion integrations/tide/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ default = ["websocket"]
websocket = ["tide-websockets"]

[dependencies]
async-graphql = { workspace = true, default-features = false }
async-graphql = { workspace = true }

async-trait.workspace = true
futures-util.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion integrations/warp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repository = "https://github.com/async-graphql/async-graphql"
version = "5.0.6"

[dependencies]
async-graphql = { workspace = true, default-features = false }
async-graphql = { workspace = true }

futures-util = { workspace = true, default-features = false, features = [
"sink",
Expand Down

0 comments on commit 8638910

Please sign in to comment.