File tree Expand file tree Collapse file tree 7 files changed +20
-19
lines changed Expand file tree Collapse file tree 7 files changed +20
-19
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ cargo-features = ["profile-rustflags"]
4
4
name = " bootloader"
5
5
description = " An experimental x86_64 bootloader that works on both BIOS and UEFI systems."
6
6
license.workspace = true
7
- version = " 0.11.0-beta.1 "
7
+ version.workspace = true
8
8
repository.workspace = true
9
9
authors = [" Philipp Oppermann <dev@phil-opp.com>" ]
10
10
edition = " 2021"
@@ -27,13 +27,14 @@ members = [
27
27
exclude = [" examples/basic" , " examples/test_framework" ]
28
28
29
29
[workspace .package ]
30
- version = " 0.11.0-beta"
30
+ version = " 0.11.0-beta.1 "
31
31
license = " MIT/Apache-2.0"
32
32
repository = " https://github.com/rust-osdev/bootloader"
33
33
34
34
[workspace .dependencies ]
35
- bootloader_api = { version = " 0.11.0-beta" , path = " api" }
36
- bootloader-x86_64-common = { version = " 0.11.0-beta" , path = " common" }
35
+ bootloader_api = { version = " 0.11.0-beta.1" , path = " api" }
36
+ bootloader-x86_64-common = { version = " 0.11.0-beta.1" , path = " common" }
37
+ bootloader-x86_64-bios-common = { version = " 0.11.0-beta.1" , path = " bios/common" }
37
38
38
39
[dependencies ]
39
40
anyhow = " 1.0.32"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " bootloader-x86_64-bios-boot-sector"
3
- version = " 0.1.0-beta.1 "
3
+ version.workspace = true
4
4
authors = [" Philipp Oppermann <dev@phil-opp.com>" ]
5
5
edition = " 2021"
6
6
license.workspace = true
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " bootloader-x86_64-bios-common"
3
- version = " 0.1.0-beta "
3
+ version.workspace = true
4
4
edition = " 2021"
5
5
license.workspace = true
6
6
repository.workspace = true
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " bootloader-x86_64-bios-stage-2"
3
- version = " 0.1.0-beta "
3
+ version.workspace = true
4
4
authors = [" Philipp Oppermann <dev@phil-opp.com>" ]
5
5
edition = " 2021"
6
6
license.workspace = true
@@ -12,7 +12,7 @@ description = "Second BIOS stage of the `bootloader` crate"
12
12
[dependencies ]
13
13
mbr-nostd = " 0.1.0"
14
14
byteorder = { version = " 1.4.3" , default-features = false }
15
- bootloader-x86_64-bios-common = { version = " 0.1.0-beta " , path = " ../common " }
15
+ bootloader-x86_64-bios-common = { workspace = true }
16
16
17
17
# This currently causes a cargo warning, but it is required for publishing to crates.io.
18
18
# See https://github.com/rust-lang/cargo/issues/8264 for details.
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " bootloader-x86_64-bios-stage-3"
3
- version = " 0.1.0-beta "
3
+ version.workspace = true
4
4
authors = [" Philipp Oppermann <dev@phil-opp.com>" ]
5
5
edition = " 2021"
6
6
license.workspace = true
@@ -10,7 +10,7 @@ description = "Third BIOS stage of the `bootloader` crate"
10
10
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
11
11
12
12
[dependencies ]
13
- bootloader-x86_64-bios-common = { version = " 0.1.0-beta " , path = " ../common " }
13
+ bootloader-x86_64-bios-common = { workspace = true }
14
14
noto-sans-mono-bitmap = " 0.1.5"
15
15
16
16
# This currently causes a cargo warning, but it is required for publishing to crates.io.
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ description = "Fourth BIOS stage of the `bootloader` crate"
11
11
[dependencies ]
12
12
bootloader_api = { workspace = true }
13
13
bootloader-x86_64-common = { workspace = true }
14
- bootloader-x86_64-bios-common = { version = " 0.1.0-beta " , path = " ../common " }
14
+ bootloader-x86_64-bios-common = { workspace = true }
15
15
log = " 0.4.14"
16
16
x86_64 = " 0.14.8"
17
17
rsdp = " 2.0.0"
You can’t perform that action at this time.
0 commit comments