Skip to content

Commit 7370bc7

Browse files
committed
update for poem 3.0.0
1 parent 711d360 commit 7370bc7

File tree

16 files changed

+16
-16
lines changed

16 files changed

+16
-16
lines changed

federation/dynamic-schema/federation-accounts/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ edition = "2021"
77
async-graphql = { path = "../../../..", features = ["dynamic-schema"] }
88
async-graphql-poem = { path = "../../../../integrations/poem" }
99
tokio = { version = "1.0.2", features = ["macros", "rt-multi-thread"] }
10-
poem = { version = "2.0.0" }
10+
poem = { version = "3.0.0" }

federation/dynamic-schema/federation-products/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ edition = "2021"
77
async-graphql = { path = "../../../..", features = ["dynamic-schema"] }
88
async-graphql-poem = { path = "../../../../integrations/poem" }
99
tokio = { version = "1.0.2", features = ["macros", "rt-multi-thread"] }
10-
poem = { version = "2.0.0" }
10+
poem = { version = "3.0.0" }

federation/dynamic-schema/federation-reviews/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ edition = "2021"
77
async-graphql = { path = "../../../..", features = ["dynamic-schema"] }
88
async-graphql-poem = { path = "../../../../integrations/poem" }
99
tokio = { version = "1.0.2", features = ["macros", "rt-multi-thread"] }
10-
poem = { version = "2.0.0" }
10+
poem = { version = "3.0.0" }

federation/static-schema/federation-accounts/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ async-graphql = { path = "../../../.." }
99
async-graphql-poem = { path = "../../../../integrations/poem" }
1010
directives = { path = "../directives" }
1111
tokio = { version = "1.0.2", features = ["macros", "rt-multi-thread"] }
12-
poem = { version = "2.0.0" }
12+
poem = { version = "3.0.0" }

federation/static-schema/federation-products/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ async-graphql = { path = "../../../.." }
99
async-graphql-poem = { path = "../../../../integrations/poem" }
1010
directives = { path = "../directives" }
1111
tokio = { version = "1.0.2", features = ["macros", "rt-multi-thread"] }
12-
poem = { version = "2.0.0" }
12+
poem = { version = "3.0.0" }

federation/static-schema/federation-reviews/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ async-graphql = { path = "../../../.." }
99
async-graphql-poem = { path = "../../../../integrations/poem" }
1010
directives = { path = "../directives" }
1111
tokio = { version = "1.0.2", features = ["macros", "rt-multi-thread"] }
12-
poem = { version = "2.0.0" }
12+
poem = { version = "3.0.0" }

poem/dynamic-books/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ async-graphql = { path = "../../..", features = ["dynamic-schema"] }
88
async-graphql-poem = { path = "../../../integrations/poem" }
99
tokio = { version = "1.29", features = ["macros", "rt-multi-thread"] }
1010
dynamic-books = { path = "../../models/dynamic-books" }
11-
poem = "2.0.0"
11+
poem = "3.0.0"

poem/dynamic-schema/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ edition = "2021"
77
async-graphql = { path = "../../..", features = ["dynamic-schema"] }
88
async-graphql-poem = { path = "../../../integrations/poem" }
99
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
10-
poem = "2.0.0"
10+
poem = "3.0.0"

poem/dynamic-starwars/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ async-graphql = { path = "../../..", features = ["dynamic-schema"] }
88
async-graphql-poem = { path = "../../../integrations/poem" }
99
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
1010
dynamic-starwars = { path = "../../models/dynamic-starwars" }
11-
poem = "2.0.0"
11+
poem = "3.0.0"

poem/dynamic-upload/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ async-graphql = { path = "../../..", features = ["dynamic-schema"] }
88
async-graphql-poem = { path = "../../../integrations/poem" }
99
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
1010
dynamic-files = { path = "../../models/dynamic-files" }
11-
poem = "2.0.0"
11+
poem = "3.0.0"

poem/opentelemetry-basic/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2021"
99
async-graphql = { path = "../../..", features = ["opentelemetry"] }
1010
async-graphql-poem = { path = "../../../integrations/poem" }
1111
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
12-
poem = "2.0.0"
12+
poem = "3.0.0"
1313
opentelemetry = { version = "0.21.0" }
1414
opentelemetry_sdk = { version = "0.21", features = ["rt-tokio"] }
1515
opentelemetry-stdout = { version = "0.2.0", features = ["trace"] }

poem/starwars/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ async-graphql = { path = "../../.." }
88
async-graphql-poem = { path = "../../../integrations/poem" }
99
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
1010
starwars = { path = "../../models/starwars" }
11-
poem = "2.0.0"
11+
poem = "3.0.0"

poem/subscription-redis/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ edition = "2021"
77
async-graphql = { path = "../../.." }
88
async-graphql-poem = { path = "../../../integrations/poem" }
99
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
10-
poem = { version = "2.0.0", features = ["websocket"] }
10+
poem = { version = "3.0.0", features = ["websocket"] }
1111
redis = { version = "0.21.4", features = ["aio", "tokio-comp"] }
1212
futures-util = "0.3.19"

poem/subscription/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ async-graphql = { path = "../../.." }
88
async-graphql-poem = { path = "../../../integrations/poem" }
99
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
1010
books = { path = "../../models/books" }
11-
poem = { version = "2.0.0", features = ["websocket"] }
11+
poem = { version = "3.0.0", features = ["websocket"] }

poem/token-from-header/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ edition = "2021"
77
async-graphql = { path = "../../.." }
88
async-graphql-poem = { path = "../../../integrations/poem" }
99
token = { path = "../../models/token" }
10-
poem = { version = "2.0.0", features = ["websocket"] }
10+
poem = { version = "3.0.0", features = ["websocket"] }
1111
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }

poem/upload/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ edition = "2021"
77
[dependencies]
88
async-graphql = { path = "../../.." }
99
async-graphql-poem = { path = "../../../integrations/poem" }
10-
poem = { version = "2.0.0", features = ["websocket"] }
10+
poem = { version = "3.0.0", features = ["websocket"] }
1111
files = { path = "../../models/files" }
1212
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }

0 commit comments

Comments
 (0)