diff options
| author | Jonas Schievink <jonasschievink@gmail.com> | 2017-09-03 18:05:48 +0200 |
|---|---|---|
| committer | Jonas Schievink <jonasschievink@gmail.com> | 2017-09-03 18:19:21 +0200 |
| commit | 7ebba49644eda963106cc51d13fc016a577fc934 (patch) | |
| tree | 17e14d26dd4a5cbaaf7b4b2e4907f1640aaf15ea /Cargo.toml | |
| parent | 27fc7e99d20252318152973e1c617c3da92b2bf8 (diff) | |
Allow initialization of resources in `init`.
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -14,9 +14,10 @@ version = "0.2.1" [dependencies] cortex-m = "0.3.1" -cortex-m-rtfm-macros = "=0.2.0" -rtfm-core = "0.1.0" -static-ref = "0.2.1" +# TODO should this have been a `path` dep all along? +cortex-m-rtfm-macros = { path = "macros" } +# TODO revert before merging +rtfm-core = { git = "https://github.com/jonas-schievink/rtfm-core.git", branch = "init-resources" } [target.'cfg(target_arch = "x86_64")'.dev-dependencies] compiletest_rs = "0.2.8" @@ -30,4 +31,4 @@ features = ["rt"] version = "0.7.1" [profile.release] -lto = true
\ No newline at end of file +lto = true |
