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"]
44name = " bootloader"
55description = " An experimental x86_64 bootloader that works on both BIOS and UEFI systems."
66license.workspace = true
7- version = " 0.11.0-beta.1 "
7+ version.workspace = true
88repository.workspace = true
99authors = [" Philipp Oppermann <dev@phil-opp.com>" ]
1010edition = " 2021"
@@ -27,13 +27,14 @@ members = [
2727exclude = [" examples/basic" , " examples/test_framework" ]
2828
2929[workspace .package ]
30- version = " 0.11.0-beta"
30+ version = " 0.11.0-beta.1 "
3131license = " MIT/Apache-2.0"
3232repository = " https://github.com/rust-osdev/bootloader"
3333
3434[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" }
3738
3839[dependencies ]
3940anyhow = " 1.0.32"
Original file line number Diff line number Diff line change 11[package ]
22name = " bootloader-x86_64-bios-boot-sector"
3- version = " 0.1.0-beta.1 "
3+ version.workspace = true
44authors = [" Philipp Oppermann <dev@phil-opp.com>" ]
55edition = " 2021"
66license.workspace = true
Original file line number Diff line number Diff line change 11[package ]
22name = " bootloader-x86_64-bios-common"
3- version = " 0.1.0-beta "
3+ version.workspace = true
44edition = " 2021"
55license.workspace = true
66repository.workspace = true
Original file line number Diff line number Diff line change 11[package ]
22name = " bootloader-x86_64-bios-stage-2"
3- version = " 0.1.0-beta "
3+ version.workspace = true
44authors = [" Philipp Oppermann <dev@phil-opp.com>" ]
55edition = " 2021"
66license.workspace = true
@@ -12,7 +12,7 @@ description = "Second BIOS stage of the `bootloader` crate"
1212[dependencies ]
1313mbr-nostd = " 0.1.0"
1414byteorder = { 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 }
1616
1717# This currently causes a cargo warning, but it is required for publishing to crates.io.
1818# See https://github.com/rust-lang/cargo/issues/8264 for details.
Original file line number Diff line number Diff line change 11[package ]
22name = " bootloader-x86_64-bios-stage-3"
3- version = " 0.1.0-beta "
3+ version.workspace = true
44authors = [" Philipp Oppermann <dev@phil-opp.com>" ]
55edition = " 2021"
66license.workspace = true
@@ -10,7 +10,7 @@ description = "Third BIOS stage of the `bootloader` crate"
1010# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1111
1212[dependencies ]
13- bootloader-x86_64-bios-common = { version = " 0.1.0-beta " , path = " ../common " }
13+ bootloader-x86_64-bios-common = { workspace = true }
1414noto-sans-mono-bitmap = " 0.1.5"
1515
1616# 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"
1111[dependencies ]
1212bootloader_api = { workspace = true }
1313bootloader-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 }
1515log = " 0.4.14"
1616x86_64 = " 0.14.8"
1717rsdp = " 2.0.0"
You can’t perform that action at this time.
0 commit comments