From 4345c105963cee061acf26bec207fab2859fb164 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Sun, 16 Dec 2018 18:37:36 +0100 Subject: properly handle #[cfg] (conditional compilation) on resources --- macros/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'macros/Cargo.toml') diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 1b45fc8..dd5fb54 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -14,12 +14,12 @@ version = "0.4.0-beta.3" proc-macro = true [dependencies] -quote = "0.6.8" -proc-macro2 = "0.4.20" +quote = "0.6.10" +proc-macro2 = "0.4.24" [dependencies.syn] features = ["extra-traits", "full"] -version = "0.15.6" +version = "0.15.23" [dependencies.rand] default-features = false -- cgit v1.2.3 From 56d09a12dd645166af7d6def6b95bf71ae7962bd Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Sun, 16 Dec 2018 19:13:22 +0100 Subject: move macros crate to the 2018 edition --- macros/Cargo.toml | 1 + 1 file changed, 1 insertion(+) (limited to 'macros/Cargo.toml') diff --git a/macros/Cargo.toml b/macros/Cargo.toml index dd5fb54..4c4b734 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -3,6 +3,7 @@ authors = ["Jorge Aparicio "] categories = ["concurrency", "embedded", "no-std"] description = "Procedural macros of the cortex-m-rtfm crate" documentation = "https://japaric.github.io/cortex-m-rtfm/api/cortex_m_rtfm" +edition = "2018" keywords = ["arm", "cortex-m"] license = "MIT OR Apache-2.0" name = "cortex-m-rtfm-macros" -- cgit v1.2.3