aboutsummaryrefslogtreecommitdiffstats
path: root/askama_derive
diff options
context:
space:
mode:
authorLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2019-08-14 20:44:32 +0200
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2019-08-14 20:44:32 +0200
commita0997e7108a46e78541b1e4f3fb77d6fd56df901 (patch)
tree38595cef3fd79bf872749810ee5da9d3d7474613 /askama_derive
parent832cc923be072e7f2fddaee24cb5d1d9296982fd (diff)
downloadaskama-a0997e7108a46e78541b1e4f3fb77d6fd56df901.tar.gz
askama-a0997e7108a46e78541b1e4f3fb77d6fd56df901.tar.bz2
askama-a0997e7108a46e78541b1e4f3fb77d6fd56df901.zip
Switch to syn/quote/proc_macro2 1.0
Diffstat (limited to 'askama_derive')
-rw-r--r--askama_derive/Cargo.toml6
-rw-r--r--askama_derive/src/input.rs126
2 files changed, 60 insertions, 72 deletions
diff --git a/askama_derive/Cargo.toml b/askama_derive/Cargo.toml
index 34a04dc..bf0a1ac 100644
--- a/askama_derive/Cargo.toml
+++ b/askama_derive/Cargo.toml
@@ -21,6 +21,6 @@ gotham = []
[dependencies]
askama_shared = { version = "0.8", path = "../askama_shared" }
nom = "4"
-proc-macro2 = "0.4"
-quote = "0.6"
-syn = "0.15"
+proc-macro2 = "1"
+quote = "1"
+syn = "1"
diff --git a/askama_derive/src/input.rs b/askama_derive/src/input.rs
index 0bf6093..a0cb813 100644
--- a/askama_derive/src/input.rs
+++ b/askama_derive/src/input.rs
@@ -1,11 +1,8 @@
-use proc_macro2::TokenStream;
-
-use quote::ToTokens;
-
use askama_shared::{Config, Syntax};
use std::path::PathBuf;
+use quote::ToTokens;
use syn;
pub struct TemplateInput<'a> {
@@ -28,23 +25,22 @@ impl<'a> TemplateInput<'a> {
pub fn new<'n>(ast: &'n syn::DeriveInput, config: &'n Config) -> TemplateInput<'n> {
// Check that an attribute called `template()` exists and that it is
// the proper type (list).
- let mut meta = None;
- for attr in &ast.attrs {
- match attr.interpret_meta() {
- Some(m) => {
- if m.name() == "template" {
- meta = Some(m)
+ let meta = ast
+ .attrs
+ .iter()
+ .find_map(|attr| match attr.parse_meta() {
+ Ok(m) => {
+ if m.path().is_ident("template") {
+ Some(m)
+ } else {
+ None
}
}
- None => {
- let mut tokens = TokenStream::new();
- attr.to_tokens(&mut tokens);
- panic!("unable to interpret attribute: {}", tokens)
- }
- }
- }
+ Err(e) => panic!("unable to parse attribute: {}", e),
+ })
+ .expect("no attribute 'template' found");
- let meta_list = match meta.expect("no attribute 'template' found") {
+ let meta_list = match meta {
syn::Meta::List(inner) => inner,
_ => panic!("attribute 'template' has incorrect type"),
};
@@ -57,60 +53,52 @@ impl<'a> TemplateInput<'a> {
let mut escaping = None;
let mut ext = None;
let mut syntax = None;
- for nm_item in meta_list.nested {
- if let syn::NestedMeta::Meta(ref item) = nm_item {
- if let syn::Meta::NameValue(ref pair) = item {
- match pair.ident.to_string().as_ref() {
- "path" => {
- if let syn::Lit::Str(ref s) = pair.lit {
- if source.is_some() {
- panic!("must specify 'source' or 'path', not both");
- }
- source = Some(Source::Path(s.value()));
- } else {
- panic!("template path must be string literal");
- }
- }
- "source" => {
- if let syn::Lit::Str(ref s) = pair.lit {
- if source.is_some() {
- panic!("must specify 'source' or 'path', not both");
- }
- source = Some(Source::Source(s.value()));
- } else {
- panic!("template source must be string literal");
- }
+ for item in meta_list.nested {
+ if let syn::NestedMeta::Meta(syn::Meta::NameValue(ref pair)) = item {
+ if pair.path.is_ident("path") {
+ if let syn::Lit::Str(ref s) = pair.lit {
+ if source.is_some() {
+ panic!("must specify 'source' or 'path', not both");
}
- "print" => {
- if let syn::Lit::Str(ref s) = pair.lit {
- print = s.value().into();
- } else {
- panic!("print value must be string literal");
- }
- }
- "escape" => {
- if let syn::Lit::Str(ref s) = pair.lit {
- escaping = Some(s.value());
- } else {
- panic!("escape value must be string literal");
- }
- }
- "ext" => {
- if let syn::Lit::Str(ref s) = pair.lit {
- ext = Some(s.value());
- } else {
- panic!("ext value must be string literal");
- }
- }
- "syntax" => {
- if let syn::Lit::Str(ref s) = pair.lit {
- syntax = Some(s.value())
- } else {
- panic!("syntax value must be string literal");
- }
+ source = Some(Source::Path(s.value()));
+ } else {
+ panic!("template path must be string literal");
+ }
+ } else if pair.path.is_ident("source") {
+ if let syn::Lit::Str(ref s) = pair.lit {
+ if source.is_some() {
+ panic!("must specify 'source' or 'path', not both");
}
- attr => panic!("unsupported annotation key '{}' found", attr),
+ source = Some(Source::Source(s.value()));
+ } else {
+ panic!("template source must be string literal");
+ }
+ } else if pair.path.is_ident("print") {
+ if let syn::Lit::Str(ref s) = pair.lit {
+ print = s.value().into();
+ } else {
+ panic!("print value must be string literal");
+ }
+ } else if pair.path.is_ident("escape") {
+ if let syn::Lit::Str(ref s) = pair.lit {
+ escaping = Some(s.value());
+ } else {
+ panic!("escape value must be string literal");
+ }
+ } else if pair.path.is_ident("ext") {
+ if let syn::Lit::Str(ref s) = pair.lit {
+ ext = Some(s.value());
+ } else {
+ panic!("ext value must be string literal");
+ }
+ } else if pair.path.is_ident("syntax") {
+ if let syn::Lit::Str(ref s) = pair.lit {
+ syntax = Some(s.value())
+ } else {
+ panic!("syntax value must be string literal");
}
+ } else {
+ panic!("unsupported attribute key '{}' found", pair.path.to_token_stream())
}
}
}