Skip to content

Commit 907c2ce

Browse files
committed
update edition to 2024
1 parent a08ec5f commit 907c2ce

File tree

41 files changed

+68
-58
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+68
-58
lines changed

.rustfmt.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
edition = "2021"
1+
edition = "2024"
22
newline_style = "Unix"
33
# comments
44
normalize_comments = true

actix-web/error-extensions/Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@
22
name = "actix-web-error-extensions"
33
version = "0.1.1"
44
authors = ["sunli <scott_s829@163.com>"]
5-
edition = "2021"
5+
edition = "2024"
66

77
[dependencies]
88
async-graphql = { path = "../../.." }
99
async-graphql-actix-web = { path = "../../../integrations/actix-web" }
10-
actix-web = { version = "4.5.1", default-features = false, features = ["macros"] }
10+
actix-web = { version = "4.5.1", default-features = false, features = [
11+
"macros",
12+
] }
1113
thiserror = "1.0"
1214
serde_json = "1.0"

actix-web/starwars/Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22
name = "actix-web-starwars"
33
version = "0.1.1"
44
authors = ["sunli <scott_s829@163.com>"]
5-
edition = "2021"
5+
edition = "2024"
66

77
[dependencies]
88
async-graphql = { path = "../../.." }
99
async-graphql-actix-web = { path = "../../../integrations/actix-web" }
10-
actix-web = { version = "4.5.1", default-features = false, features = ["macros"] }
10+
actix-web = { version = "4.5.1", default-features = false, features = [
11+
"macros",
12+
] }
1113
starwars = { path = "../../models/starwars" }

actix-web/subscription/Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22
name = "actix-web-subscription"
33
version = "0.1.1"
44
authors = ["sunli <scott_s829@163.com>"]
5-
edition = "2021"
5+
edition = "2024"
66

77
[dependencies]
88
async-graphql = { path = "../../.." }
99
async-graphql-actix-web = { path = "../../../integrations/actix-web" }
10-
actix-web = { version = "4.5.1", default-features = false, features = ["macros"] }
10+
actix-web = { version = "4.5.1", default-features = false, features = [
11+
"macros",
12+
] }
1113
books = { path = "../../models/books" }

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22
name = "actix-web-token-from-header"
33
version = "0.1.1"
44
authors = ["sunli <scott_s829@163.com>"]
5-
edition = "2021"
5+
edition = "2024"
66

77
[dependencies]
88
async-graphql = { path = "../../.." }
99
async-graphql-actix-web = { path = "../../../integrations/actix-web" }
10-
actix-web = { version = "4.5.1", default-features = false, features = ["macros"] }
10+
actix-web = { version = "4.5.1", default-features = false, features = [
11+
"macros",
12+
] }
1113
token = { path = "../../models/token" }

actix-web/upload/Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22
name = "actix-web-upload"
33
version = "0.1.1"
44
authors = ["sunli <scott_s829@163.com>"]
5-
edition = "2021"
5+
edition = "2024"
66

77
[dependencies]
88
async-graphql = { path = "../../.." }
99
async-graphql-actix-web = { path = "../../../integrations/actix-web" }
10-
actix-web = { version = "4.5.1", default-features = false, features = ["macros"] }
10+
actix-web = { version = "4.5.1", default-features = false, features = [
11+
"macros",
12+
] }
1113
files = { path = "../../models/files" }

axum/starwars/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "axum-starwars"
33
version = "0.1.0"
4-
edition = "2021"
4+
edition = "2024"
55

66
[dependencies]
77
async-graphql = { path = "../../.." }

axum/subscription/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "axum-subscription"
33
version = "0.1.0"
4-
edition = "2021"
4+
edition = "2024"
55

66
[dependencies]
77
async-graphql = { path = "../../.." }

axum/token-from-header/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "axum-token-from-header"
33
version = "0.1.0"
4-
edition = "2021"
4+
edition = "2024"
55

66
[dependencies]
77
async-graphql = { path = "../../.." }

axum/upload/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "axum-upload"
33
version = "0.1.1"
44
authors = ["sunli <scott_s829@163.com>"]
5-
edition = "2021"
5+
edition = "2024"
66

77
[dependencies]
88
async-graphql = { path = "../../.." }

0 commit comments

Comments
 (0)