aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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" }