diff options
author | 2020-02-05 22:28:26 +0000 | |
---|---|---|
committer | 2020-02-05 22:28:26 +0000 | |
commit | 89dcee6dd1bdc670058e88cf4b2f90861ca808b3 (patch) | |
tree | 6466461fcb8b74ccfde5585d5146e5dab15d9b64 | |
parent | e1994fba68774c85ff0ebeb983f4711bb61e4b97 (diff) | |
download | cortex-m-89dcee6dd1bdc670058e88cf4b2f90861ca808b3.tar.gz cortex-m-89dcee6dd1bdc670058e88cf4b2f90861ca808b3.tar.zst cortex-m-89dcee6dd1bdc670058e88cf4b2f90861ca808b3.zip |
Change macros crate to same version as cortex-m-rt, with strict version dependency. Closes #244
-rw-r--r-- | cortex-m-rt/Cargo.toml | 2 | ||||
-rw-r--r-- | cortex-m-rt/macros/Cargo.toml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cortex-m-rt/Cargo.toml b/cortex-m-rt/Cargo.toml index bcbd600..dd2a250 100644 --- a/cortex-m-rt/Cargo.toml +++ b/cortex-m-rt/Cargo.toml @@ -17,7 +17,7 @@ autoexamples = true [dependencies] r0 = "0.2.2" -cortex-m-rt-macros = { path = "macros", version = "0.1" } +cortex-m-rt-macros = { path = "macros", version = "=0.6.11" } [dev-dependencies] cortex-m = "0.6" diff --git a/cortex-m-rt/macros/Cargo.toml b/cortex-m-rt/macros/Cargo.toml index 9beb8f9..eb7c120 100644 --- a/cortex-m-rt/macros/Cargo.toml +++ b/cortex-m-rt/macros/Cargo.toml @@ -7,7 +7,7 @@ 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.7" +version = "0.6.11" edition = "2018" [lib] |