From 7f1b493c7dcda874c88cad6e5f3badd91d8e6989 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Sun, 15 Sep 2019 22:57:43 +0200 Subject: [PATCH] turn git deps into crates.io deps --- Cargo.toml | 2 +- macros/Cargo.toml | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 70606c881f..d8b7563e2e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -48,7 +48,7 @@ required-features = ["__v7"] [dependencies] cortex-m = "0.6.0" cortex-m-rtfm-macros = { path = "macros" } -rtfm-core = { git = "https://github.com/rtfm-rs/rtfm-core" } +rtfm-core = "0.3.0-beta.1" cortex-m-rt = "0.6.9" heapless = "0.5.0" diff --git a/macros/Cargo.toml b/macros/Cargo.toml index c7cce5257e..f916818203 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -18,9 +18,7 @@ proc-macro = true proc-macro2 = "1" quote = "1" syn = "1" - -[dependencies.rtfm-syntax] -git = "https://github.com/rtfm-rs/rtfm-syntax" +rtfm-syntax = "0.4.0-beta.1" [features] heterogeneous = []