Skip to content

Commit 87f7b81

Browse files
committed
Bumped rust version from 2021 to 2024
1 parent 707db11 commit 87f7b81

File tree

20 files changed

+20
-20
lines changed

20 files changed

+20
-20
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ license.workspace = true
55
version.workspace = true
66
repository.workspace = true
77
authors = ["Philipp Oppermann <[email protected]>"]
8-
edition = "2021"
8+
edition = "2024"
99

1010
[workspace]
1111
members = [

api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "bootloader_api"
33
license.workspace = true
44
version.workspace = true
55
repository.workspace = true
6-
edition = "2021"
6+
edition = "2024"
77
description = "Makes a kernel compatible with the bootloader crate"
88

99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

bios/boot_sector/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "bootloader-x86_64-bios-boot-sector"
33
version.workspace = true
44
authors = ["Philipp Oppermann <[email protected]>"]
5-
edition = "2021"
5+
edition = "2024"
66
license.workspace = true
77
repository.workspace = true
88
description = "BIOS boot sector for the `bootloader` crate"

bios/common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "bootloader-x86_64-bios-common"
33
version.workspace = true
4-
edition = "2021"
4+
edition = "2024"
55
license.workspace = true
66
repository.workspace = true
77
description = "Common code for BIOS stages of the `bootloader` crate"

bios/stage-2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "bootloader-x86_64-bios-stage-2"
33
version.workspace = true
44
authors = ["Philipp Oppermann <[email protected]>"]
5-
edition = "2021"
5+
edition = "2024"
66
license.workspace = true
77
repository.workspace = true
88
description = "Second BIOS stage of the `bootloader` crate"

bios/stage-3/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "bootloader-x86_64-bios-stage-3"
33
version.workspace = true
44
authors = ["Philipp Oppermann <[email protected]>"]
5-
edition = "2021"
5+
edition = "2024"
66
license.workspace = true
77
repository.workspace = true
88
description = "Third BIOS stage of the `bootloader` crate"

bios/stage-4/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "bootloader-x86_64-bios-stage-4"
33
version.workspace = true
4-
edition = "2021"
4+
edition = "2024"
55
license.workspace = true
66
repository.workspace = true
77
description = "Fourth BIOS stage of the `bootloader` crate"

common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "bootloader-x86_64-common"
33
version.workspace = true
4-
edition = "2021"
4+
edition = "2024"
55
description = "Common code for the x86_64 bootloader implementations"
66
license.workspace = true
77
repository.workspace = true

common/config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "bootloader-boot-config"
33
version.workspace = true
4-
edition = "2021"
4+
edition = "2024"
55
description = "The runtime configurations that are saved in a JSON file for the bootloader crate"
66
license.workspace = true
77
repository.workspace = true

tests/runner/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "bootloader_test_runner"
33
version = "0.1.0"
44
authors = ["Philipp Oppermann <[email protected]>"]
5-
edition = "2021"
5+
edition = "2024"
66

77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

0 commit comments

Comments
 (0)