Version number in macros 1.1 example
diff --git a/README.md b/README.md
index c0582ba..5366752 100644
--- a/README.md
+++ b/README.md
@@ -37,8 +37,16 @@
 
 ## Usage with [Macros 1.1](https://github.com/rust-lang/rfcs/blob/master/text/1681-macros-1.1.md)
 
+```toml
+[dependencies]
+syn = "0.6"
+quote = "0.1"
+
+[lib]
+rustc-macro = true
+```
+
 ```rust
-// lib.rs
 #![crate_type = "rustc-macro"]
 #![feature(rustc_macro, rustc_macro_lib)]
 
@@ -67,17 +75,6 @@
 }
 ```
 
-```toml
-# Cargo.toml
-# ...
-[dependencies]
-syn = "0.5"
-quote = "0.1"
-
-[lib]
-rustc-macro = true
-```
-
 ## License
 
 Licensed under either of