aboutsummaryrefslogtreecommitdiffstats
path: root/askama_derive/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2018-05-21 15:39:06 +0200
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2018-05-21 15:39:06 +0200
commit460db851543fdbd5777425f1c7aa06bb27e0c6c8 (patch)
treec918cf6f4d0eb283ae04e71254827581e736bd22 /askama_derive/src/lib.rs
parent09eeaf869942b99146c25bd3065965aa846241db (diff)
downloadaskama-460db851543fdbd5777425f1c7aa06bb27e0c6c8.tar.gz
askama-460db851543fdbd5777425f1c7aa06bb27e0c6c8.tar.bz2
askama-460db851543fdbd5777425f1c7aa06bb27e0c6c8.zip
Upgrade to syn-0.14 and quote-0.6
Diffstat (limited to '')
-rw-r--r--askama_derive/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/askama_derive/src/lib.rs b/askama_derive/src/lib.rs
index df76507..1faebec 100644
--- a/askama_derive/src/lib.rs
+++ b/askama_derive/src/lib.rs
@@ -2,9 +2,9 @@ extern crate askama_shared as shared;
#[macro_use]
extern crate nom;
extern crate proc_macro;
+extern crate proc_macro2;
#[macro_use]
extern crate quote;
-#[macro_use(parse_quote)]
extern crate syn;
mod input;