File tree Expand file tree Collapse file tree 10 files changed +32
-26
lines changed Expand file tree Collapse file tree 10 files changed +32
-26
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ cargo-features = ["profile-rustflags"]
22
33[package ]
44name = " bootloader"
5- version = " 0.11.0-alpha "
5+ version.workspace = true
66authors = [" Philipp Oppermann <dev@phil-opp.com>" ]
77license = " MIT/Apache-2.0"
88description = " An experimental x86_64 bootloader that works on both BIOS and UEFI systems."
@@ -26,6 +26,12 @@ members = [
2626]
2727exclude = [" examples/basic" , " examples/test_framework" ]
2828
29+ [workspace .package ]
30+ version = " 0.11.0-beta"
31+
32+ [workspace .dependencies ]
33+ bootloader_api = { version = " 0.11.0-beta" , path = " api" }
34+ bootloader-x86_64-common = { version = " 0.11.0-beta" , path = " common" }
2935
3036[dependencies ]
3137anyhow = " 1.0.32"
Original file line number Diff line number Diff line change 11[package ]
22name = " bootloader_api"
3- version = " 0.1.0-alpha.0 "
3+ version.workspace = true
44edition = " 2021"
55description = " Makes a kernel compatible with the bootloader crate"
66license = " MIT/Apache-2.0"
Original file line number Diff line number Diff line change 11[package ]
22name = " bootloader-x86_64-bios-boot-sector"
3- version = " 0.1.0"
3+ version = " 0.1.0-beta "
44authors = [" Philipp Oppermann <dev@phil-opp.com>" ]
55edition = " 2021"
66
Original file line number Diff line number Diff line change 11[package ]
22name = " bootloader-x86_64-bios-common"
3- version = " 0.1.0"
3+ version = " 0.1.0-beta "
44edition = " 2021"
55
66# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Original file line number Diff line number Diff line change 11[package ]
22name = " bootloader-x86_64-bios-stage-2"
3- version = " 0.1.0"
3+ version = " 0.1.0-beta "
44authors = [" Philipp Oppermann <dev@phil-opp.com>" ]
55edition = " 2021"
66
@@ -9,4 +9,4 @@ edition = "2021"
99[dependencies ]
1010mbr-nostd = " 0.1.0"
1111byteorder = { version = " 1.4.3" , default-features = false }
12- bootloader-x86_64-bios-common = { version = " 0.1.0" , path = " ../common" }
12+ bootloader-x86_64-bios-common = { version = " 0.1.0-beta " , path = " ../common" }
Original file line number Diff line number Diff line change 11[package ]
22name = " bootloader-x86_64-bios-stage-3"
3- version = " 0.1.0"
3+ version = " 0.1.0-beta "
44authors = [" Philipp Oppermann <dev@phil-opp.com>" ]
55edition = " 2021"
66
77# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88
99[dependencies ]
10- bootloader-x86_64-bios-common = { version = " 0.1.0" , path = " ../common" }
10+ bootloader-x86_64-bios-common = { version = " 0.1.0-beta " , path = " ../common" }
1111noto-sans-mono-bitmap = " 0.1.5"
Original file line number Diff line number Diff line change 11[package ]
22name = " bootloader-x86_64-bios-stage-4"
3- version = " 0.1.0-alpha.0 "
3+ version.workspace = true
44edition = " 2021"
55
66# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77
88[dependencies ]
9- bootloader_api = { version = " 0.1.0-alpha.0 " , path = " ../../api " }
10- bootloader-x86_64-bios- common = { version = " 0.1.0 " , path = " ../common " }
11- bootloader-x86_64-common = { version = " 0.1.0-alpha.0 " , path = " ../ ../common" }
9+ bootloader_api = { workspace = true }
10+ bootloader-x86_64-common = { workspace = true }
11+ bootloader-x86_64-bios- common = { version = " 0.1.0-beta " , path = " ../common" }
1212log = " 0.4.14"
1313x86_64 = " 0.14.8"
1414rsdp = " 2.0.0"
Original file line number Diff line number Diff line change 11[package ]
22name = " bootloader-x86_64-common"
3- version = " 0.1.0-alpha.0 "
3+ version.workspace = true
44edition = " 2021"
55description = " Common code for the x86_64 bootloader implementations"
66license = " MIT/Apache-2.0"
77
88# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
99
1010[dependencies ]
11- bootloader_api = { version = " 0.1.0-alpha.0 " , path = " ../api " }
11+ bootloader_api = { workspace = true }
1212conquer-once = { version = " 0.3.2" , default-features = false }
1313log = " 0.4.14"
1414spinning_top = " 0.2.4"
Original file line number Diff line number Diff line change 11[package ]
22name = " bootloader-x86_64-uefi"
3- version = " 0.1.0-alpha.0 "
3+ version.workspace = true
44edition = " 2021"
55description = " UEFI bootloader for x86_64"
66license = " MIT/Apache-2.0"
77
88# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
99
1010[dependencies ]
11- bootloader_api = { version = " 0.1.0-alpha.0 " , path = " ../api " }
12- bootloader-x86_64-common = { version = " 0.1.0-alpha.0 " , path = " ../common " }
11+ bootloader_api = { workspace = true }
12+ bootloader-x86_64-common = { workspace = true }
1313log = " 0.4.14"
1414uefi = " 0.16.0"
1515x86_64 = " 0.14.8"
You can’t perform that action at this time.
0 commit comments