Skip to content

Commit 638f707

Browse files
committed
v0.6.0, take 2
the dev-dependency of cortex-m-rt-macros needs to specify a version or can't be published; this commit fixes that docs.rs won't be able to build docs for these two crates so this also changes the documentation link to https://rust-embedded.github.io/cortex-m-rt/ where I have (manually) implemented a poor man's docs.rs
1 parent 338d00c commit 638f707

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

cortex-m-rt/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
authors = ["Jorge Aparicio <[email protected]>"]
33
categories = ["embedded", "no-std"]
44
description = "Minimal runtime / startup for Cortex-M microcontrollers"
5-
documentation = "https://docs.rs/cortex-m-rt"
6-
readme = "README.md"
5+
documentation = "https://rust-embedded.github.io/cortex-m-rt/"
76
keywords = ["arm", "cortex-m", "runtime", "startup"]
87
license = "MIT OR Apache-2.0"
98
name = "cortex-m-rt"
9+
readme = "README.md"
1010
repository = "https://github.com/japaric/cortex-m-rt"
1111
version = "0.6.0"
1212

cortex-m-rt/macros/Cargo.toml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
[package]
2+
authors = ["Jorge Aparicio <[email protected]>"]
3+
categories = ["embedded", "no-std"]
4+
description = "Attributes re-exported in `cortex-m-rt`"
5+
documentation = "https://rust-embedded.github.io/cortex-m-rt"
6+
keywords = ["arm", "cortex-m", "runtime", "startup"]
7+
license = "MIT OR Apache-2.0"
28
name = "cortex-m-rt-macros"
9+
repository = "https://github.com/japaric/cortex-m-rt"
310
version = "0.1.0"
4-
authors = ["Jorge Aparicio <[email protected]>"]
511

612
[lib]
713
proc-macro = true
@@ -16,4 +22,4 @@ features = ["extra-traits", "full"]
1622
version = "0.14.8"
1723

1824
[dev-dependencies]
19-
cortex-m-rt = { path = ".." }
25+
cortex-m-rt = { path = "..", version = "0.6.0" }

0 commit comments

Comments
 (0)