diff options
author | 2019-03-15 01:25:10 +0000 | |
---|---|---|
committer | 2019-03-15 01:25:10 +0000 | |
commit | 02317e6431274955188b69a7b463ab24a528b30e (patch) | |
tree | d1caa10dc6abc3d41cd4969cda2036792c275a56 | |
parent | 6898ce8164780143180773758d53d3e3223173cf (diff) | |
parent | 3b4f193a2538ac433f83e0a05b1c261fdcb14653 (diff) | |
download | cortex-m-02317e6431274955188b69a7b463ab24a528b30e.tar.gz cortex-m-02317e6431274955188b69a7b463ab24a528b30e.tar.zst cortex-m-02317e6431274955188b69a7b463ab24a528b30e.zip |
Merge #183
183: Update cortex-m version requirement to allow using 0.6.0 r=therealprof a=adamgreig
See also https://github.com/rust-embedded/cortex-m-semihosting/pull/32
Co-authored-by: Adam Greig <adam@adamgreig.com>
-rw-r--r-- | cortex-m-rt/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cortex-m-rt/Cargo.toml b/cortex-m-rt/Cargo.toml index df0158c..949bdad 100644 --- a/cortex-m-rt/Cargo.toml +++ b/cortex-m-rt/Cargo.toml @@ -20,7 +20,7 @@ r0 = "0.2.2" cortex-m-rt-macros = { path = "macros", version = "0.1.5" } [dev-dependencies] -cortex-m = "0.5.7" +cortex-m = ">= 0.5.7, <0.7" panic-halt = "0.2.0" cortex-m-semihosting = "0.3.1" @@ -39,4 +39,4 @@ required-features = ["device"] device = [] [package.metadata.docs.rs] -features = ["device"]
\ No newline at end of file +features = ["device"] |