Skip to content

Commit e97fa4f

Browse files
committed
Set license and repository link for all crates
1 parent a3aee58 commit e97fa4f

File tree

9 files changed

+21
-6
lines changed

9 files changed

+21
-6
lines changed

Cargo.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ cargo-features = ["profile-rustflags"]
22

33
[package]
44
name = "bootloader"
5+
description = "An experimental x86_64 bootloader that works on both BIOS and UEFI systems."
6+
license.workspace = true
57
version.workspace = true
8+
repository.workspace = true
69
authors = ["Philipp Oppermann <dev@phil-opp.com>"]
7-
license = "MIT/Apache-2.0"
8-
description = "An experimental x86_64 bootloader that works on both BIOS and UEFI systems."
9-
repository = "https://github.com/rust-osdev/bootloader"
1010
edition = "2021"
1111

1212
[workspace]
@@ -28,6 +28,8 @@ exclude = ["examples/basic", "examples/test_framework"]
2828

2929
[workspace.package]
3030
version = "0.11.0-beta"
31+
license = "MIT/Apache-2.0"
32+
repository = "https://github.com/rust-osdev/bootloader"
3133

3234
[workspace.dependencies]
3335
bootloader_api = { version = "0.11.0-beta", path = "api" }

api/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
[package]
22
name = "bootloader_api"
3+
license.workspace = true
34
version.workspace = true
5+
repository.workspace = true
46
edition = "2021"
57
description = "Makes a kernel compatible with the bootloader crate"
6-
license = "MIT/Apache-2.0"
78

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

bios/boot_sector/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name = "bootloader-x86_64-bios-boot-sector"
33
version = "0.1.0-beta"
44
authors = ["Philipp Oppermann <dev@phil-opp.com>"]
55
edition = "2021"
6+
license.workspace = true
7+
repository.workspace = true
68

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

bios/common/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
name = "bootloader-x86_64-bios-common"
33
version = "0.1.0-beta"
44
edition = "2021"
5+
license.workspace = true
6+
repository.workspace = true
57

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

bios/stage-2/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name = "bootloader-x86_64-bios-stage-2"
33
version = "0.1.0-beta"
44
authors = ["Philipp Oppermann <dev@phil-opp.com>"]
55
edition = "2021"
6+
license.workspace = true
7+
repository.workspace = true
68

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

bios/stage-3/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name = "bootloader-x86_64-bios-stage-3"
33
version = "0.1.0-beta"
44
authors = ["Philipp Oppermann <dev@phil-opp.com>"]
55
edition = "2021"
6+
license.workspace = true
7+
repository.workspace = true
68

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

bios/stage-4/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
name = "bootloader-x86_64-bios-stage-4"
33
version.workspace = true
44
edition = "2021"
5+
license.workspace = true
6+
repository.workspace = true
57

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

common/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ name = "bootloader-x86_64-common"
33
version.workspace = true
44
edition = "2021"
55
description = "Common code for the x86_64 bootloader implementations"
6-
license = "MIT/Apache-2.0"
6+
license.workspace = true
7+
repository.workspace = true
78

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

uefi/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ name = "bootloader-x86_64-uefi"
33
version.workspace = true
44
edition = "2021"
55
description = "UEFI bootloader for x86_64"
6-
license = "MIT/Apache-2.0"
6+
license.workspace = true
7+
repository.workspace = true
78

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

0 commit comments

Comments
 (0)