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"]
2
2
3
3
[package ]
4
4
name = " bootloader"
5
- version = " 0.11.0-alpha "
5
+ version.workspace = true
6
6
authors = [" Philipp Oppermann <dev@phil-opp.com>" ]
7
7
license = " MIT/Apache-2.0"
8
8
description = " An experimental x86_64 bootloader that works on both BIOS and UEFI systems."
@@ -26,6 +26,12 @@ members = [
26
26
]
27
27
exclude = [" examples/basic" , " examples/test_framework" ]
28
28
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" }
29
35
30
36
[dependencies ]
31
37
anyhow = " 1.0.32"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " bootloader_api"
3
- version = " 0.1.0-alpha.0 "
3
+ version.workspace = true
4
4
edition = " 2021"
5
5
description = " Makes a kernel compatible with the bootloader crate"
6
6
license = " MIT/Apache-2.0"
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"
3
+ version = " 0.1.0-beta "
4
4
authors = [" Philipp Oppermann <dev@phil-opp.com>" ]
5
5
edition = " 2021"
6
6
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"
3
+ version = " 0.1.0-beta "
4
4
edition = " 2021"
5
5
6
6
# 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 1
1
[package ]
2
2
name = " bootloader-x86_64-bios-stage-2"
3
- version = " 0.1.0"
3
+ version = " 0.1.0-beta "
4
4
authors = [" Philipp Oppermann <dev@phil-opp.com>" ]
5
5
edition = " 2021"
6
6
@@ -9,4 +9,4 @@ edition = "2021"
9
9
[dependencies ]
10
10
mbr-nostd = " 0.1.0"
11
11
byteorder = { 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 1
1
[package ]
2
2
name = " bootloader-x86_64-bios-stage-3"
3
- version = " 0.1.0"
3
+ version = " 0.1.0-beta "
4
4
authors = [" Philipp Oppermann <dev@phil-opp.com>" ]
5
5
edition = " 2021"
6
6
7
7
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8
8
9
9
[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" }
11
11
noto-sans-mono-bitmap = " 0.1.5"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " bootloader-x86_64-bios-stage-4"
3
- version = " 0.1.0-alpha.0 "
3
+ version.workspace = true
4
4
edition = " 2021"
5
5
6
6
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7
7
8
8
[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" }
12
12
log = " 0.4.14"
13
13
x86_64 = " 0.14.8"
14
14
rsdp = " 2.0.0"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " bootloader-x86_64-common"
3
- version = " 0.1.0-alpha.0 "
3
+ version.workspace = true
4
4
edition = " 2021"
5
5
description = " Common code for the x86_64 bootloader implementations"
6
6
license = " MIT/Apache-2.0"
7
7
8
8
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
9
9
10
10
[dependencies ]
11
- bootloader_api = { version = " 0.1.0-alpha.0 " , path = " ../api " }
11
+ bootloader_api = { workspace = true }
12
12
conquer-once = { version = " 0.3.2" , default-features = false }
13
13
log = " 0.4.14"
14
14
spinning_top = " 0.2.4"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " bootloader-x86_64-uefi"
3
- version = " 0.1.0-alpha.0 "
3
+ version.workspace = true
4
4
edition = " 2021"
5
5
description = " UEFI bootloader for x86_64"
6
6
license = " MIT/Apache-2.0"
7
7
8
8
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
9
9
10
10
[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 }
13
13
log = " 0.4.14"
14
14
uefi = " 0.16.0"
15
15
x86_64 = " 0.14.8"
You can’t perform that action at this time.
0 commit comments