Skip to content

Commit 4dbb7e4

Browse files
committed
Fix documentation links for platform crates
1 parent 35c3f6a commit 4dbb7e4

File tree

13 files changed

+11
-15
lines changed

13 files changed

+11
-15
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ authors = [
3131
]
3232
license = "GPL-3.0-or-later OR Apache-2.0 OR MulanPSL-2.0"
3333
homepage = "https://github.com/arceos-org/arceos"
34-
documentation = "https://arceos-org.github.io/axplat_crates"
3534
repository = "https://github.com/arceos-org/axplat_crates"
3635

3736
[workspace.dependencies]

examples/hello-kernel/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
77
homepage.workspace = true
8-
documentation.workspace = true
98
repository.workspace = true
109

1110
[dependencies]

examples/irq-kernel/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
77
homepage.workspace = true
8-
documentation.workspace = true
98
repository.workspace = true
109

1110
[dependencies]

examples/smp-kernel/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
77
homepage.workspace = true
8-
documentation.workspace = true
98
repository.workspace = true
109

1110
[dependencies]

platforms/axplat-aarch64-bsta1000b/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
name = "axplat-aarch64-bsta1000b"
33
version = "0.1.0"
44
description = "Implementation of `axplat` hardware abstraction layer for Black Sesame Technology A1000b SoC."
5+
documentation = "https://docs.rs/axplat-aarch64-bsta1000b"
56
keywords = ["arceos", "os", "hal", "embedded", "aarch64"]
67
categories = ["embedded", "no-std", "hardware-support", "os"]
78
edition.workspace = true
89
authors.workspace = true
910
license.workspace = true
1011
homepage.workspace = true
11-
documentation.workspace = true
1212
repository.workspace = true
1313

1414
[features]

platforms/axplat-aarch64-peripherals/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "axplat-aarch64-peripherals"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "ARM64 common peripheral drivers with `axplat` compatibility"
5+
documentation = "https://docs.rs/axplat-aarch64-peripherals"
56
keywords = ["arceos", "os", "hal", "peripheral", "aarch64"]
67
categories = ["embedded", "no-std", "hardware-support", "os"]
78
edition.workspace = true
89
authors.workspace = true
910
license.workspace = true
1011
homepage.workspace = true
11-
documentation.workspace = true
1212
repository.workspace = true
1313

1414
[dependencies]
@@ -25,4 +25,4 @@ axcpu = { workspace = true }
2525
axplat = { workspace = true, features = ["irq"] }
2626

2727
[package.metadata.docs.rs]
28-
target = ["aarch64-unknown-none"]
28+
targets = ["aarch64-unknown-none"]

platforms/axplat-aarch64-phytium-pi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
name = "axplat-aarch64-phytium-pi"
33
version = "0.1.0"
44
description = "Implementation of `axplat` hardware abstraction layer for Phytium Pi board."
5+
documentation = "https://docs.rs/axplat-aarch64-phytium-pi"
56
keywords = ["arceos", "os", "hal", "embedded", "aarch64"]
67
categories = ["embedded", "no-std", "hardware-support", "os"]
78
edition.workspace = true
89
authors.workspace = true
910
license.workspace = true
1011
homepage.workspace = true
11-
documentation.workspace = true
1212
repository.workspace = true
1313

1414
[features]

platforms/axplat-aarch64-qemu-virt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
name = "axplat-aarch64-qemu-virt"
33
version = "0.1.0"
44
description = "Implementation of `axplat` hardware abstraction layer for QEMU ARM64 virtual machine."
5+
documentation = "https://docs.rs/axplat-aarch64-qemu-virt"
56
keywords = ["arceos", "os", "hal", "embedded", "aarch64"]
67
categories = ["embedded", "no-std", "hardware-support", "os"]
78
edition.workspace = true
89
authors.workspace = true
910
license.workspace = true
1011
homepage.workspace = true
11-
documentation.workspace = true
1212
repository.workspace = true
1313

1414
[features]

platforms/axplat-aarch64-raspi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
name = "axplat-aarch64-raspi"
33
version = "0.1.0"
44
description = "Implementation of `axplat` hardware abstraction layer for Raspberry Pi 4B board."
5+
documentation = "https://docs.rs/axplat-aarch64-raspi"
56
keywords = ["arceos", "os", "hal", "aarch64", "raspi"]
67
categories = ["embedded", "no-std", "hardware-support", "os"]
78
edition.workspace = true
89
authors.workspace = true
910
license.workspace = true
1011
homepage.workspace = true
11-
documentation.workspace = true
1212
repository.workspace = true
1313

1414
[features]

0 commit comments

Comments
 (0)