Skip to content

Updating dependencies to the actual version #82

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jul 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion actix-web/error-extensions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ edition = "2021"
[dependencies]
async-graphql = { path = "../../.." }
async-graphql-actix-web = { path = "../../../integrations/actix-web" }
actix-web = { version = "4.0.1", default-features = false, features = ["macros"] }
actix-web = { version = "4.5.1", default-features = false, features = ["macros"] }
thiserror = "1.0"
serde_json = "1.0"
2 changes: 1 addition & 1 deletion actix-web/starwars/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ edition = "2021"
[dependencies]
async-graphql = { path = "../../.." }
async-graphql-actix-web = { path = "../../../integrations/actix-web" }
actix-web = { version = "4.0.1", default-features = false, features = ["macros"] }
actix-web = { version = "4.5.1", default-features = false, features = ["macros"] }
starwars = { path = "../../models/starwars" }
2 changes: 1 addition & 1 deletion actix-web/subscription/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ edition = "2021"
[dependencies]
async-graphql = { path = "../../.." }
async-graphql-actix-web = { path = "../../../integrations/actix-web" }
actix-web = { version = "4.0.1", default-features = false, features = ["macros"] }
actix-web = { version = "4.5.1", default-features = false, features = ["macros"] }
books = { path = "../../models/books" }
2 changes: 1 addition & 1 deletion actix-web/token-from-header/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ edition = "2021"
[dependencies]
async-graphql = { path = "../../.." }
async-graphql-actix-web = { path = "../../../integrations/actix-web" }
actix-web = { version = "4.0.1", default-features = false, features = ["macros"] }
actix-web = { version = "4.5.1", default-features = false, features = ["macros"] }
token = { path = "../../models/token" }
2 changes: 1 addition & 1 deletion actix-web/upload/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ edition = "2021"
[dependencies]
async-graphql = { path = "../../.." }
async-graphql-actix-web = { path = "../../../integrations/actix-web" }
actix-web = { version = "4.0.1", default-features = false, features = ["macros"] }
actix-web = { version = "4.5.1", default-features = false, features = ["macros"] }
files = { path = "../../models/files" }
4 changes: 2 additions & 2 deletions axum/starwars/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ edition = "2021"
[dependencies]
async-graphql = { path = "../../.." }
async-graphql-axum = { path = "../../../integrations/axum" }
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
starwars = { path = "../../models/starwars" }
axum = { version = "0.7.0" }
axum = { version = "0.7.5" }
4 changes: 2 additions & 2 deletions axum/subscription/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ edition = "2021"
[dependencies]
async-graphql = { path = "../../.." }
async-graphql-axum = { path = "../../../integrations/axum" }
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
books = { path = "../../models/books" }
axum = { version = "0.7.0", features = ["ws"] }
axum = { version = "0.7.5", features = ["ws"] }
4 changes: 2 additions & 2 deletions axum/token-from-header/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ edition = "2021"
[dependencies]
async-graphql = { path = "../../.." }
async-graphql-axum = { path = "../../../integrations/axum" }
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
token = { path = "../../models/token" }
axum = { version = "0.7.0", features = ["ws"] }
axum = { version = "0.7.5", features = ["ws"] }
6 changes: 3 additions & 3 deletions axum/upload/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
[dependencies]
async-graphql = { path = "../../.." }
async-graphql-axum = { path = "../../../integrations/axum" }
axum = "0.7.0"
axum = "0.7.5"
files = { path = "../../models/files" }
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
tower-http = { version = "0.5.0", features = ["cors"] }
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
tower-http = { version = "0.5.2", features = ["cors"] }
4 changes: 2 additions & 2 deletions federation/dynamic-schema/federation-accounts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ edition = "2021"
[dependencies]
async-graphql = { path = "../../../..", features = ["dynamic-schema"] }
async-graphql-poem = { path = "../../../../integrations/poem" }
tokio = { version = "1.0.2", features = ["macros", "rt-multi-thread"] }
poem = { version = "3.0.0" }
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
poem = { version = "3.0.0" }
4 changes: 2 additions & 2 deletions federation/dynamic-schema/federation-products/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ edition = "2021"
[dependencies]
async-graphql = { path = "../../../..", features = ["dynamic-schema"] }
async-graphql-poem = { path = "../../../../integrations/poem" }
tokio = { version = "1.0.2", features = ["macros", "rt-multi-thread"] }
poem = { version = "3.0.0" }
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
poem = { version = "3.0.0" }
4 changes: 2 additions & 2 deletions federation/dynamic-schema/federation-reviews/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ edition = "2021"
[dependencies]
async-graphql = { path = "../../../..", features = ["dynamic-schema"] }
async-graphql-poem = { path = "../../../../integrations/poem" }
tokio = { version = "1.0.2", features = ["macros", "rt-multi-thread"] }
poem = { version = "3.0.0" }
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
poem = { version = "3.0.0" }
2 changes: 1 addition & 1 deletion federation/static-schema/directives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ edition = "2021"

[dependencies]
async-graphql = { path = "../../../.." }
async-trait = "0.1.61"
async-trait = "0.1.79"
4 changes: 2 additions & 2 deletions federation/static-schema/federation-accounts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ edition = "2021"
async-graphql = { path = "../../../.." }
async-graphql-poem = { path = "../../../../integrations/poem" }
directives = { path = "../directives" }
tokio = { version = "1.0.2", features = ["macros", "rt-multi-thread"] }
poem = { version = "3.0.0" }
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
poem = { version = "3.0.0" }
4 changes: 2 additions & 2 deletions federation/static-schema/federation-products/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ edition = "2021"
async-graphql = { path = "../../../.." }
async-graphql-poem = { path = "../../../../integrations/poem" }
directives = { path = "../directives" }
tokio = { version = "1.0.2", features = ["macros", "rt-multi-thread"] }
poem = { version = "3.0.0" }
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
poem = { version = "3.0.0" }
4 changes: 2 additions & 2 deletions federation/static-schema/federation-reviews/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ edition = "2021"
async-graphql = { path = "../../../.." }
async-graphql-poem = { path = "../../../../integrations/poem" }
directives = { path = "../directives" }
tokio = { version = "1.0.2", features = ["macros", "rt-multi-thread"] }
poem = { version = "3.0.0" }
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
poem = { version = "3.0.0" }
12 changes: 6 additions & 6 deletions models/books/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ edition = "2021"

[dependencies]
async-graphql = { path = "../../.." }
slab = "0.4.2"
futures-util = "0.3.0"
futures-channel = "0.3.0"
once_cell = "1.0"
futures-timer = "3.0.2"
async-stream = "0.3.0"
slab = "0.4.9"
futures-util = "0.3.30"
futures-channel = "0.3.30"
once_cell = "1.19"
futures-timer = "3.0.3"
async-stream = "0.3.5"
12 changes: 6 additions & 6 deletions models/dynamic-books/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ edition = "2021"

[dependencies]
async-graphql = { path = "../../..", features = ["dynamic-schema"] }
slab = "0.4.2"
futures-util = "0.3.0"
futures-channel = "0.3.0"
once_cell = "1.0"
futures-timer = "3.0.2"
async-stream = "0.3.0"
slab = "0.4.9"
futures-util = "0.3.30"
futures-channel = "0.3.30"
once_cell = "1.19"
futures-timer = "3.0.3"
async-stream = "0.3.5"
4 changes: 2 additions & 2 deletions models/dynamic-files/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ edition = "2021"

[dependencies]
async-graphql = { path = "../../.." }
slab = "0.4.2"
futures = "0.3.0"
slab = "0.4.9"
futures = "0.3.30"
2 changes: 1 addition & 1 deletion models/dynamic-starwars/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ edition = "2021"

[dependencies]
async-graphql = { path = "../../..", features = ["dynamic-schema"] }
slab = "0.4.2"
slab = "0.4.9"
4 changes: 2 additions & 2 deletions models/files/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ edition = "2021"

[dependencies]
async-graphql = { path = "../../.." }
slab = "0.4.2"
futures = "0.3.0"
slab = "0.4.9"
futures = "0.3.30"
2 changes: 1 addition & 1 deletion models/starwars/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ edition = "2021"

[dependencies]
async-graphql = { path = "../../.." }
slab = "0.4.2"
slab = "0.4.9"
2 changes: 1 addition & 1 deletion models/token/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ edition = "2021"

[dependencies]
async-graphql = { path = "../../.." }
futures-util = "0.3.0"
futures-util = "0.3.30"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
4 changes: 2 additions & 2 deletions poem/dynamic-books/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ edition = "2021"
[dependencies]
async-graphql = { path = "../../..", features = ["dynamic-schema"] }
async-graphql-poem = { path = "../../../integrations/poem" }
tokio = { version = "1.29", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
dynamic-books = { path = "../../models/dynamic-books" }
poem = "3.0.0"
poem = "3.0.0"
4 changes: 2 additions & 2 deletions poem/dynamic-schema/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ edition = "2021"
[dependencies]
async-graphql = { path = "../../..", features = ["dynamic-schema"] }
async-graphql-poem = { path = "../../../integrations/poem" }
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
poem = "3.0.0"
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
poem = { version = "3.0.0" }
4 changes: 2 additions & 2 deletions poem/dynamic-starwars/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ edition = "2021"
[dependencies]
async-graphql = { path = "../../..", features = ["dynamic-schema"] }
async-graphql-poem = { path = "../../../integrations/poem" }
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
dynamic-starwars = { path = "../../models/dynamic-starwars" }
poem = "3.0.0"
poem = "3.0.0"
2 changes: 1 addition & 1 deletion poem/dynamic-upload/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ edition = "2021"
[dependencies]
async-graphql = { path = "../../..", features = ["dynamic-schema"] }
async-graphql-poem = { path = "../../../integrations/poem" }
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
dynamic-files = { path = "../../models/dynamic-files" }
poem = "3.0.0"
4 changes: 2 additions & 2 deletions poem/opentelemetry-basic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ edition = "2021"
[dependencies]
async-graphql = { path = "../../..", features = ["opentelemetry"] }
async-graphql-poem = { path = "../../../integrations/poem" }
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
poem = "3.0.0"
opentelemetry = { version = "0.22.0" }
opentelemetry_sdk = { version = "0.22", features = ["rt-tokio"] }
opentelemetry-stdout = { version = "0.3.0", features = ["trace"] }
opentelemetry-stdout = { version = "0.3.0", features = ["trace"] }
4 changes: 2 additions & 2 deletions poem/starwars/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ edition = "2021"
[dependencies]
async-graphql = { path = "../../.." }
async-graphql-poem = { path = "../../../integrations/poem" }
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
starwars = { path = "../../models/starwars" }
poem = "3.0.0"
poem = "3.0.0"
4 changes: 2 additions & 2 deletions poem/subscription-redis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
[dependencies]
async-graphql = { path = "../../.." }
async-graphql-poem = { path = "../../../integrations/poem" }
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
poem = { version = "3.0.0", features = ["websocket"] }
redis = { version = "0.25.2", features = ["aio", "tokio-comp"] }
futures-util = "0.3.19"
futures-util = "0.3.30"
4 changes: 2 additions & 2 deletions poem/subscription/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ edition = "2021"
[dependencies]
async-graphql = { path = "../../.." }
async-graphql-poem = { path = "../../../integrations/poem" }
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
books = { path = "../../models/books" }
poem = { version = "3.0.0", features = ["websocket"] }
poem = { version = "3.0.0", features = ["websocket"] }
2 changes: 1 addition & 1 deletion poem/token-from-header/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ async-graphql = { path = "../../.." }
async-graphql-poem = { path = "../../../integrations/poem" }
token = { path = "../../models/token" }
poem = { version = "3.0.0", features = ["websocket"] }
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
2 changes: 1 addition & 1 deletion poem/upload/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ async-graphql = { path = "../../.." }
async-graphql-poem = { path = "../../../integrations/poem" }
poem = { version = "3.0.0", features = ["websocket"] }
files = { path = "../../models/files" }
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
10 changes: 5 additions & 5 deletions tide/dataloader-postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ edition = "2018"
[dependencies]
async-graphql = { path = "../../..", features = ["dataloader"] }
async-graphql-tide = { path = "../../../integrations/tide" }
async-std = "1.9.0"
itertools = "0.10.0"
sqlx = { version = "0.7.2", features = [
async-std = "1.12.0"
itertools = "0.12.1"
sqlx = { version = "0.7.4", features = [
"runtime-async-std-rustls",
"postgres",
] }
tide = "0.16.0"

[dev-dependencies]
serde_json = "1.0.61"
surf = "2.1.0"
serde_json = "1.0.115"
surf = "2.3.2"
10 changes: 5 additions & 5 deletions tide/dataloader/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ edition = "2018"
async-graphql = { path = "../../..", features = ["dataloader"] }
async-graphql-tide = { path = "../../../integrations/tide" }
tide = "0.16"
async-std = "1.9.0"
sqlx = { version = "0.7.2", features = ["sqlite", "runtime-async-std-rustls"] }
itertools = "0.9.0"
async-std = "1.12.0"
sqlx = { version = "0.7.4", features = ["sqlite", "runtime-async-std-rustls"] }
itertools = "0.12.1"

[dev-dependencies]
serde_json = "1.0.51"
surf = "2.0.0-alpha.1"
serde_json = "1.0.115"
surf = "2.3.2"
6 changes: 3 additions & 3 deletions tide/starwars/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ edition = "2018"
async-graphql = { path = "../../.." }
async-graphql-tide = { path = "../../../integrations/tide" }
tide = "0.16"
async-std = "1.9.0"
async-std = "1.12.0"
starwars = { path = "../../models/starwars" }

[dev-dependencies]
serde_json = "1.0.51"
surf = "2.0.0-alpha.5"
serde_json = "1.0.115"
surf = "2.3.2"
2 changes: 1 addition & 1 deletion tide/subscription/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ async-graphql = { path = "../../.." }
async-graphql-tide = { path = "../../../integrations/tide" }
books = { path = "../../models/books" }
tide = "0.16"
async-std = "1.9.0"
async-std = "1.12.0"
2 changes: 1 addition & 1 deletion warp/starwars/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
[dependencies]
async-graphql = { path = "../../.." }
async-graphql-warp = { path = "../../../integrations/warp" }
tokio = { version = "1.0.2", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
warp = "0.3"
starwars = { path = "../../models/starwars" }
http = "0.2"
2 changes: 1 addition & 1 deletion warp/subscription/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ edition = "2021"
[dependencies]
async-graphql = { path = "../../.." }
async-graphql-warp = { path = "../../../integrations/warp" }
tokio = { version = "1.0.2", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
warp = "0.3"
books = { path = "../../models/books" }
2 changes: 1 addition & 1 deletion warp/token-from-header/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ edition = "2021"
[dependencies]
async-graphql = { path = "../../.." }
async-graphql-warp = { path = "../../../integrations/warp" }
tokio = { version = "1.0.2", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
warp = "0.3"
token = { path = "../../models/token" }