Skip to content

Commit cc1ee10

Browse files
committed
chore(deps): update dependencies
1 parent 711d360 commit cc1ee10

File tree

40 files changed

+88
-88
lines changed

40 files changed

+88
-88
lines changed

actix-web/error-extensions/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ edition = "2021"
77
[dependencies]
88
async-graphql = { path = "../../.." }
99
async-graphql-actix-web = { path = "../../../integrations/actix-web" }
10-
actix-web = { version = "4.0.1", default-features = false, features = ["macros"] }
10+
actix-web = { version = "4.5.1", default-features = false, features = ["macros"] }
1111
thiserror = "1.0"
1212
serde_json = "1.0"

actix-web/starwars/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ edition = "2021"
77
[dependencies]
88
async-graphql = { path = "../../.." }
99
async-graphql-actix-web = { path = "../../../integrations/actix-web" }
10-
actix-web = { version = "4.0.1", default-features = false, features = ["macros"] }
10+
actix-web = { version = "4.5.1", default-features = false, features = ["macros"] }
1111
starwars = { path = "../../models/starwars" }

actix-web/subscription/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ edition = "2021"
77
[dependencies]
88
async-graphql = { path = "../../.." }
99
async-graphql-actix-web = { path = "../../../integrations/actix-web" }
10-
actix-web = { version = "4.0.1", default-features = false, features = ["macros"] }
10+
actix-web = { version = "4.5.1", default-features = false, features = ["macros"] }
1111
books = { path = "../../models/books" }

actix-web/token-from-header/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ edition = "2021"
77
[dependencies]
88
async-graphql = { path = "../../.." }
99
async-graphql-actix-web = { path = "../../../integrations/actix-web" }
10-
actix-web = { version = "4.0.1", default-features = false, features = ["macros"] }
10+
actix-web = { version = "4.5.1", default-features = false, features = ["macros"] }
1111
token = { path = "../../models/token" }

actix-web/upload/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ edition = "2021"
77
[dependencies]
88
async-graphql = { path = "../../.." }
99
async-graphql-actix-web = { path = "../../../integrations/actix-web" }
10-
actix-web = { version = "4.0.1", default-features = false, features = ["macros"] }
10+
actix-web = { version = "4.5.1", default-features = false, features = ["macros"] }
1111
files = { path = "../../models/files" }

axum/starwars/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ edition = "2021"
66
[dependencies]
77
async-graphql = { path = "../../.." }
88
async-graphql-axum = { path = "../../../integrations/axum" }
9-
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
9+
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
1010
starwars = { path = "../../models/starwars" }
11-
axum = { version = "0.7.0" }
11+
axum = { version = "0.7.5" }

axum/subscription/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ edition = "2021"
66
[dependencies]
77
async-graphql = { path = "../../.." }
88
async-graphql-axum = { path = "../../../integrations/axum" }
9-
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
9+
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
1010
books = { path = "../../models/books" }
11-
axum = { version = "0.7.0", features = ["ws"] }
11+
axum = { version = "0.7.5", features = ["ws"] }

axum/token-from-header/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ edition = "2021"
66
[dependencies]
77
async-graphql = { path = "../../.." }
88
async-graphql-axum = { path = "../../../integrations/axum" }
9-
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
9+
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
1010
token = { path = "../../models/token" }
11-
axum = { version = "0.7.0", features = ["ws"] }
11+
axum = { version = "0.7.5", features = ["ws"] }

axum/upload/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
[dependencies]
88
async-graphql = { path = "../../.." }
99
async-graphql-axum = { path = "../../../integrations/axum" }
10-
axum = "0.7.0"
10+
axum = "0.7.5"
1111
files = { path = "../../models/files" }
12-
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
13-
tower-http = { version = "0.5.0", features = ["cors"] }
12+
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
13+
tower-http = { version = "0.5.2", features = ["cors"] }

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ edition = "2021"
66
[dependencies]
77
async-graphql = { path = "../../../..", features = ["dynamic-schema"] }
88
async-graphql-poem = { path = "../../../../integrations/poem" }
9-
tokio = { version = "1.0.2", features = ["macros", "rt-multi-thread"] }
10-
poem = { version = "2.0.0" }
9+
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
10+
poem = { version = "2.0.1" }

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ edition = "2021"
66
[dependencies]
77
async-graphql = { path = "../../../..", features = ["dynamic-schema"] }
88
async-graphql-poem = { path = "../../../../integrations/poem" }
9-
tokio = { version = "1.0.2", features = ["macros", "rt-multi-thread"] }
10-
poem = { version = "2.0.0" }
9+
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
10+
poem = { version = "2.0.1" }

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ edition = "2021"
66
[dependencies]
77
async-graphql = { path = "../../../..", features = ["dynamic-schema"] }
88
async-graphql-poem = { path = "../../../../integrations/poem" }
9-
tokio = { version = "1.0.2", features = ["macros", "rt-multi-thread"] }
10-
poem = { version = "2.0.0" }
9+
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
10+
poem = { version = "2.0.1" }

federation/static-schema/directives/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ edition = "2021"
66

77
[dependencies]
88
async-graphql = { path = "../../../.." }
9-
async-trait = "0.1.61"
9+
async-trait = "0.1.79"

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ edition = "2021"
88
async-graphql = { path = "../../../.." }
99
async-graphql-poem = { path = "../../../../integrations/poem" }
1010
directives = { path = "../directives" }
11-
tokio = { version = "1.0.2", features = ["macros", "rt-multi-thread"] }
12-
poem = { version = "2.0.0" }
11+
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
12+
poem = { version = "2.0.1" }

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ edition = "2021"
88
async-graphql = { path = "../../../.." }
99
async-graphql-poem = { path = "../../../../integrations/poem" }
1010
directives = { path = "../directives" }
11-
tokio = { version = "1.0.2", features = ["macros", "rt-multi-thread"] }
12-
poem = { version = "2.0.0" }
11+
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
12+
poem = { version = "2.0.1" }

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ edition = "2021"
88
async-graphql = { path = "../../../.." }
99
async-graphql-poem = { path = "../../../../integrations/poem" }
1010
directives = { path = "../directives" }
11-
tokio = { version = "1.0.2", features = ["macros", "rt-multi-thread"] }
12-
poem = { version = "2.0.0" }
11+
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
12+
poem = { version = "2.0.1" }

models/books/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ edition = "2021"
66

77
[dependencies]
88
async-graphql = { path = "../../.." }
9-
slab = "0.4.2"
10-
futures-util = "0.3.0"
11-
futures-channel = "0.3.0"
12-
once_cell = "1.0"
13-
futures-timer = "3.0.2"
14-
async-stream = "0.3.0"
9+
slab = "0.4.9"
10+
futures-util = "0.3.30"
11+
futures-channel = "0.3.30"
12+
once_cell = "1.19"
13+
futures-timer = "3.0.3"
14+
async-stream = "0.3.5"

models/dynamic-books/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ edition = "2021"
55

66
[dependencies]
77
async-graphql = { path = "../../..", features = ["dynamic-schema"] }
8-
slab = "0.4.2"
9-
futures-util = "0.3.0"
10-
futures-channel = "0.3.0"
11-
once_cell = "1.0"
12-
futures-timer = "3.0.2"
13-
async-stream = "0.3.0"
8+
slab = "0.4.9"
9+
futures-util = "0.3.30"
10+
futures-channel = "0.3.30"
11+
once_cell = "1.19"
12+
futures-timer = "3.0.3"
13+
async-stream = "0.3.5"

models/dynamic-files/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ edition = "2021"
55

66
[dependencies]
77
async-graphql = { path = "../../.." }
8-
slab = "0.4.2"
9-
futures = "0.3.0"
8+
slab = "0.4.9"
9+
futures = "0.3.30"

models/dynamic-starwars/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ edition = "2021"
55

66
[dependencies]
77
async-graphql = { path = "../../..", features = ["dynamic-schema"] }
8-
slab = "0.4.2"
8+
slab = "0.4.9"

models/files/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ edition = "2021"
66

77
[dependencies]
88
async-graphql = { path = "../../.." }
9-
slab = "0.4.2"
10-
futures = "0.3.0"
9+
slab = "0.4.9"
10+
futures = "0.3.30"

models/starwars/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ edition = "2021"
66

77
[dependencies]
88
async-graphql = { path = "../../.." }
9-
slab = "0.4.2"
9+
slab = "0.4.9"

models/token/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ edition = "2021"
55

66
[dependencies]
77
async-graphql = { path = "../../.." }
8-
futures-util = "0.3.0"
8+
futures-util = "0.3.30"
99
serde_json = "1.0"
1010
serde = { version = "1.0", features = ["derive"] }

poem/dynamic-books/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ edition = "2021"
66
[dependencies]
77
async-graphql = { path = "../../..", features = ["dynamic-schema"] }
88
async-graphql-poem = { path = "../../../integrations/poem" }
9-
tokio = { version = "1.29", features = ["macros", "rt-multi-thread"] }
9+
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
1010
dynamic-books = { path = "../../models/dynamic-books" }
11-
poem = "2.0.0"
11+
poem = "2.0.1"

poem/dynamic-schema/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ edition = "2021"
66
[dependencies]
77
async-graphql = { path = "../../..", features = ["dynamic-schema"] }
88
async-graphql-poem = { path = "../../../integrations/poem" }
9-
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
10-
poem = "2.0.0"
9+
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
10+
poem = "2.0.1"

poem/dynamic-starwars/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ edition = "2021"
66
[dependencies]
77
async-graphql = { path = "../../..", features = ["dynamic-schema"] }
88
async-graphql-poem = { path = "../../../integrations/poem" }
9-
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
9+
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
1010
dynamic-starwars = { path = "../../models/dynamic-starwars" }
11-
poem = "2.0.0"
11+
poem = "2.0.1"

poem/dynamic-upload/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ edition = "2021"
66
[dependencies]
77
async-graphql = { path = "../../..", features = ["dynamic-schema"] }
88
async-graphql-poem = { path = "../../../integrations/poem" }
9-
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
9+
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
1010
dynamic-files = { path = "../../models/dynamic-files" }
11-
poem = "2.0.0"
11+
poem = "2.0.1"

poem/opentelemetry-basic/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ edition = "2021"
88
[dependencies]
99
async-graphql = { path = "../../..", features = ["opentelemetry"] }
1010
async-graphql-poem = { path = "../../../integrations/poem" }
11-
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
12-
poem = "2.0.0"
13-
opentelemetry = { version = "0.21.0" }
14-
opentelemetry_sdk = { version = "0.21", features = ["rt-tokio"] }
15-
opentelemetry-stdout = { version = "0.2.0", features = ["trace"] }
11+
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
12+
poem = "2.0.1"
13+
opentelemetry = { version = "0.22.0" }
14+
opentelemetry_sdk = { version = "0.22", features = ["rt-tokio"] }
15+
opentelemetry-stdout = { version = "0.3.0", features = ["trace"] }

poem/starwars/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ edition = "2021"
66
[dependencies]
77
async-graphql = { path = "../../.." }
88
async-graphql-poem = { path = "../../../integrations/poem" }
9-
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
9+
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
1010
starwars = { path = "../../models/starwars" }
11-
poem = "2.0.0"
11+
poem = "2.0.1"

poem/subscription-redis/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
[dependencies]
77
async-graphql = { path = "../../.." }
88
async-graphql-poem = { path = "../../../integrations/poem" }
9-
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
10-
poem = { version = "2.0.0", features = ["websocket"] }
11-
redis = { version = "0.21.4", features = ["aio", "tokio-comp"] }
12-
futures-util = "0.3.19"
9+
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
10+
poem = { version = "2.0.1", features = ["websocket"] }
11+
redis = { version = "0.25.2", features = ["aio", "tokio-comp"] }
12+
futures-util = "0.3.30"

poem/subscription/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ edition = "2021"
66
[dependencies]
77
async-graphql = { path = "../../.." }
88
async-graphql-poem = { path = "../../../integrations/poem" }
9-
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
9+
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
1010
books = { path = "../../models/books" }
11-
poem = { version = "2.0.0", features = ["websocket"] }
11+
poem = { version = "2.0.1", features = ["websocket"] }

poem/token-from-header/Cargo.toml

+2-2
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"] }
11-
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
10+
poem = { version = "2.0.1", features = ["websocket"] }
11+
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }

poem/upload/Cargo.toml

+2-2
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 = "2.0.1", features = ["websocket"] }
1111
files = { path = "../../models/files" }
12-
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
12+
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }

tide/dataloader-postgres/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ edition = "2018"
77
[dependencies]
88
async-graphql = { path = "../../..", features = ["dataloader"] }
99
async-graphql-tide = { path = "../../../integrations/tide" }
10-
async-std = "1.9.0"
11-
itertools = "0.10.0"
12-
sqlx = { version = "0.7.2", features = [
10+
async-std = "1.12.0"
11+
itertools = "0.12.1"
12+
sqlx = { version = "0.7.4", features = [
1313
"runtime-async-std-rustls",
1414
"postgres",
1515
] }
1616
tide = "0.16.0"
1717

1818
[dev-dependencies]
19-
serde_json = "1.0.61"
20-
surf = "2.1.0"
19+
serde_json = "1.0.115"
20+
surf = "2.3.2"

tide/dataloader/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ edition = "2018"
88
async-graphql = { path = "../../..", features = ["dataloader"] }
99
async-graphql-tide = { path = "../../../integrations/tide" }
1010
tide = "0.16"
11-
async-std = "1.9.0"
12-
sqlx = { version = "0.7.2", features = ["sqlite", "runtime-async-std-rustls"] }
13-
itertools = "0.9.0"
11+
async-std = "1.12.0"
12+
sqlx = { version = "0.7.4", features = ["sqlite", "runtime-async-std-rustls"] }
13+
itertools = "0.12.1"
1414

1515
[dev-dependencies]
16-
serde_json = "1.0.51"
17-
surf = "2.0.0-alpha.1"
16+
serde_json = "1.0.115"
17+
surf = "2.3.2"

tide/starwars/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ edition = "2018"
88
async-graphql = { path = "../../.." }
99
async-graphql-tide = { path = "../../../integrations/tide" }
1010
tide = "0.16"
11-
async-std = "1.9.0"
11+
async-std = "1.12.0"
1212
starwars = { path = "../../models/starwars" }
1313

1414
[dev-dependencies]
15-
serde_json = "1.0.51"
16-
surf = "2.0.0-alpha.5"
15+
serde_json = "1.0.115"
16+
surf = "2.3.2"

tide/subscription/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ async-graphql = { path = "../../.." }
99
async-graphql-tide = { path = "../../../integrations/tide" }
1010
books = { path = "../../models/books" }
1111
tide = "0.16"
12-
async-std = "1.9.0"
12+
async-std = "1.12.0"

warp/starwars/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
[dependencies]
88
async-graphql = { path = "../../.." }
99
async-graphql-warp = { path = "../../../integrations/warp" }
10-
tokio = { version = "1.0.2", features = ["macros", "rt-multi-thread"] }
10+
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
1111
warp = "0.3"
1212
starwars = { path = "../../models/starwars" }
1313
http = "0.2"

warp/subscription/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ edition = "2021"
77
[dependencies]
88
async-graphql = { path = "../../.." }
99
async-graphql-warp = { path = "../../../integrations/warp" }
10-
tokio = { version = "1.0.2", features = ["macros", "rt-multi-thread"] }
10+
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
1111
warp = "0.3"
1212
books = { path = "../../models/books" }

warp/token-from-header/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ edition = "2021"
77
[dependencies]
88
async-graphql = { path = "../../.." }
99
async-graphql-warp = { path = "../../../integrations/warp" }
10-
tokio = { version = "1.0.2", features = ["macros", "rt-multi-thread"] }
10+
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
1111
warp = "0.3"
1212
token = { path = "../../models/token" }

0 commit comments

Comments
 (0)