aboutsummaryrefslogtreecommitdiff
path: root/macros/Cargo.toml
diff options
context:
space:
mode:
authorJorge Aparicio <jorge@japaric.io>2019-09-15 17:09:40 +0000
committerGitHub <noreply@github.com>2019-09-15 17:09:40 +0000
commit4ff28e9d13e845abf39c662643ae2ff5df57ec16 (patch)
tree7d9770cd357e584d85ef6ddc32bddd1a937d1020 /macros/Cargo.toml
parentfafeeb27270ef24fc3852711c6032f65aa7dbcc0 (diff)
parent7aa270cb92180abfc9102a69efdde378c3396b5e (diff)
Merge pull request #205 from japaric/heterogeneous
rtfm-syntax refactor + heterogeneous multi-core support
Diffstat (limited to 'macros/Cargo.toml')
-rw-r--r--macros/Cargo.toml13
1 files changed, 7 insertions, 6 deletions
diff --git a/macros/Cargo.toml b/macros/Cargo.toml
index df20f8c..ed7626f 100644
--- a/macros/Cargo.toml
+++ b/macros/Cargo.toml
@@ -15,12 +15,13 @@ version = "0.5.0-alpha.1"
proc-macro = true
[dependencies]
-quote = "0.6.10"
-proc-macro2 = "0.4.24"
+proc-macro2 = "1"
+quote = "1"
+syn = "1"
-[dependencies.syn]
-features = ["extra-traits", "full"]
-version = "0.15.23"
+[dependencies.rtfm-syntax]
+git = "https://github.com/japaric/rtfm-syntax"
[features]
-timer-queue = [] \ No newline at end of file
+heterogeneous = []
+homogeneous = []