diff options
-rw-r--r-- | cortex-m-rt/Cargo.toml | 4 | ||||
-rw-r--r-- | cortex-m-rt/macros/Cargo.toml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/cortex-m-rt/Cargo.toml b/cortex-m-rt/Cargo.toml index 4b5faee..1975ff6 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.5" } +cortex-m-rt-macros = { path = "macros", version = "0.1" } [dev-dependencies] cortex-m = "0.6" @@ -29,7 +29,7 @@ default-features = false version = "0.5.5" [target.'cfg(not(target_os = "none"))'.dev-dependencies] -compiletest_rs = "0.3.14" +compiletest_rs = "0.3.25" [[example]] name = "device" diff --git a/cortex-m-rt/macros/Cargo.toml b/cortex-m-rt/macros/Cargo.toml index 0875b18..c53ec89 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.5" +version = "0.1.6" [lib] proc-macro = true @@ -25,4 +25,4 @@ version = "0.5.5" default-features = false [dev-dependencies] -cortex-m-rt = { path = "..", version = "0.6.0" } +cortex-m-rt = { path = "..", version = "0.6" } |