Skip to content
This repository was archived by the owner on Jan 24, 2022. It is now read-only.

Commit 5baa082

Browse files
bors[bot]japaric
andcommitted
Merge #104
104: v0.6.0, take 2 r=therealprof a=japaric 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 now we should be able to publish a new version r? @rust-embedded/cortex-m (anyone) Co-authored-by: Jorge Aparicio <[email protected]>
2 parents 6124a5c + aabae79 commit 5baa082

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

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

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)