diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2019-08-14 20:44:32 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2019-08-14 20:44:32 +0200 |
commit | a0997e7108a46e78541b1e4f3fb77d6fd56df901 (patch) | |
tree | 38595cef3fd79bf872749810ee5da9d3d7474613 /askama_derive/Cargo.toml | |
parent | 832cc923be072e7f2fddaee24cb5d1d9296982fd (diff) | |
download | askama-a0997e7108a46e78541b1e4f3fb77d6fd56df901.tar.gz askama-a0997e7108a46e78541b1e4f3fb77d6fd56df901.tar.bz2 askama-a0997e7108a46e78541b1e4f3fb77d6fd56df901.zip |
Switch to syn/quote/proc_macro2 1.0
Diffstat (limited to '')
-rw-r--r-- | askama_derive/Cargo.toml | 6 |
1 files changed, 3 insertions, 3 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" |