diff options
author | 2022-01-12 01:58:48 +0000 | |
---|---|---|
committer | 2022-01-12 01:58:48 +0000 | |
commit | b592db9060b6c9eda1deacbd0ed418cacd69525c (patch) | |
tree | aed7dbfa3b5178a81d75a7478fb08e83edce59d1 /cortex-m-rt | |
parent | f868247e5de24348e812df7cd324b26e5f8ceda0 (diff) | |
download | cortex-m-b592db9060b6c9eda1deacbd0ed418cacd69525c.tar.gz cortex-m-b592db9060b6c9eda1deacbd0ed418cacd69525c.tar.zst cortex-m-b592db9060b6c9eda1deacbd0ed418cacd69525c.zip |
Fix cortex-m-rt build that was depending on old cortex-m via out-of-tree cortex-m-semihosting
Diffstat (limited to 'cortex-m-rt')
-rw-r--r-- | cortex-m-rt/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cortex-m-rt/Cargo.toml b/cortex-m-rt/Cargo.toml index be5f5fc..33a08eb 100644 --- a/cortex-m-rt/Cargo.toml +++ b/cortex-m-rt/Cargo.toml @@ -22,7 +22,7 @@ cortex-m-rt-macros = { path = "macros", version = "=0.7.0" } [dev-dependencies] cortex-m = { version = "0.7.4", path = ".." } panic-halt = "0.2.0" -cortex-m-semihosting = "0.3" +cortex-m-semihosting = { path = "../cortex-m-semihosting" } [target.'cfg(not(target_os = "none"))'.dev-dependencies] compiletest_rs = "0.7" |