diff options
author | 2018-06-07 11:50:14 +0100 | |
---|---|---|
committer | 2018-06-07 11:50:14 +0100 | |
commit | 5a3605050e210ab819af83b59556cfc78a2f667f (patch) | |
tree | eaac45293e2a485714cf4d245771ee34377b38b8 | |
parent | 14b18111821d8e1929df149a8782e9b7c761b1ff (diff) | |
download | rtic-5a3605050e210ab819af83b59556cfc78a2f667f.tar.gz rtic-5a3605050e210ab819af83b59556cfc78a2f667f.tar.zst rtic-5a3605050e210ab819af83b59556cfc78a2f667f.zip |
Fix mistakes in dependencies
-rw-r--r-- | Cargo.toml | 4 | ||||
-rw-r--r-- | macros/Cargo.toml | 2 |
2 files changed, 1 insertions, 5 deletions
@@ -17,10 +17,6 @@ cortex-m = "0.4.0" cortex-m-rtfm-macros = { path = "macros", version = "0.3.1" } rtfm-core = "0.2.0" untagged-option = "0.1.1" -syn = "0.14.2" -quote = "0.6.3" -proc-macro2 = "0.4.6" -failure = "0.1.1" [target.'cfg(target_arch = "x86_64")'.dev-dependencies] compiletest_rs = "0.3.5" diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 5121e7f2..794b30be 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -13,7 +13,7 @@ version = "0.3.1" failure = "0.1.1" proc-macro2 = "0.4.6" quote = "0.6.3" -rtfm-syntax = {git = "https://github.com/chocol4te/rtfm-syntax.git"} +rtfm-syntax = "0.3.4" syn = "0.14.2" [lib] |