diff options
Diffstat (limited to '')
| -rw-r--r-- | Cargo.lock | 1 | ||||
| -rw-r--r-- | askama_derive/Cargo.toml | 1 | ||||
| -rw-r--r-- | askama_derive/src/lib.rs | 2 | 
3 files changed, 0 insertions, 4 deletions
| @@ -19,7 +19,6 @@ name = "askama_derive"  version = "0.1.0"  dependencies = [   "nom 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.3.10 (registry+https://github.com/rust-lang/crates.io-index)",   "syn 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)",  ] diff --git a/askama_derive/Cargo.toml b/askama_derive/Cargo.toml index 9f525f4..210a5b7 100644 --- a/askama_derive/Cargo.toml +++ b/askama_derive/Cargo.toml @@ -5,7 +5,6 @@ authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]  [dependencies]  syn = "0.10" -quote = "0.3"  nom = "2.0"  [lib] diff --git a/askama_derive/src/lib.rs b/askama_derive/src/lib.rs index d923e19..3b8fe55 100644 --- a/askama_derive/src/lib.rs +++ b/askama_derive/src/lib.rs @@ -3,8 +3,6 @@  #[macro_use]  extern crate nom;  extern crate proc_macro; -#[macro_use] -extern crate quote;  extern crate syn;  mod generator; | 
