aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jorge Aparicio <jorge@japaric.io> 2018-09-06 16:54:59 +0200
committerGravatar Jorge Aparicio <jorge@japaric.io> 2018-09-06 16:54:59 +0200
commit638f707dd39d2af10e36e505d0d83b9664ed0177 (patch)
tree97b990145e86a939be4fc03df187ef465de12469
parent338d00c1b301446bb558873695df980142c69b9e (diff)
downloadcortex-m-638f707dd39d2af10e36e505d0d83b9664ed0177.tar.gz
cortex-m-638f707dd39d2af10e36e505d0d83b9664ed0177.tar.zst
cortex-m-638f707dd39d2af10e36e505d0d83b9664ed0177.zip
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
-rw-r--r--cortex-m-rt/Cargo.toml4
-rw-r--r--cortex-m-rt/macros/Cargo.toml10
2 files changed, 10 insertions, 4 deletions
diff --git a/cortex-m-rt/Cargo.toml b/cortex-m-rt/Cargo.toml
index dd55bb5..2035bf4 100644
--- a/cortex-m-rt/Cargo.toml
+++ b/cortex-m-rt/Cargo.toml
@@ -2,11 +2,11 @@
authors = ["Jorge Aparicio <jorge@japaric.io>"]
categories = ["embedded", "no-std"]
description = "Minimal runtime / startup for Cortex-M microcontrollers"
-documentation = "https://docs.rs/cortex-m-rt"
-readme = "README.md"
+documentation = "https://rust-embedded.github.io/cortex-m-rt/"
keywords = ["arm", "cortex-m", "runtime", "startup"]
license = "MIT OR Apache-2.0"
name = "cortex-m-rt"
+readme = "README.md"
repository = "https://github.com/japaric/cortex-m-rt"
version = "0.6.0"
diff --git a/cortex-m-rt/macros/Cargo.toml b/cortex-m-rt/macros/Cargo.toml
index d0644ee..21a6795 100644
--- a/cortex-m-rt/macros/Cargo.toml
+++ b/cortex-m-rt/macros/Cargo.toml
@@ -1,7 +1,13 @@
[package]
+authors = ["Jorge Aparicio <jorge@japaric.io>"]
+categories = ["embedded", "no-std"]
+description = "Attributes re-exported in `cortex-m-rt`"
+documentation = "https://rust-embedded.github.io/cortex-m-rt"
+keywords = ["arm", "cortex-m", "runtime", "startup"]
+license = "MIT OR Apache-2.0"
name = "cortex-m-rt-macros"
+repository = "https://github.com/japaric/cortex-m-rt"
version = "0.1.0"
-authors = ["Jorge Aparicio <jorge@japaric.io>"]
[lib]
proc-macro = true
@@ -16,4 +22,4 @@ features = ["extra-traits", "full"]
version = "0.14.8"
[dev-dependencies]
-cortex-m-rt = { path = ".." }
+cortex-m-rt = { path = "..", version = "0.6.0" }