diff options
-rw-r--r-- | askama/Cargo.toml | 6 | ||||
-rw-r--r-- | askama_derive/Cargo.toml | 4 | ||||
-rw-r--r-- | askama_shared/Cargo.toml | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/askama/Cargo.toml b/askama/Cargo.toml index bcfa393..569ace7 100644 --- a/askama/Cargo.toml +++ b/askama/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama" -version = "0.7.1" +version = "0.7.2" authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"] description = "Type-safe, compiled Jinja-like templates for Rust" documentation = "https://docs.rs/askama" @@ -25,8 +25,8 @@ with-rocket = ["rocket", "askama_derive/rocket"] with-actix-web = ["actix-web", "askama_derive/actix-web", "mime_guess"] [dependencies] -askama_derive = { version = "0.7.1", path = "../askama_derive" } -askama_shared = { version = "0.7.1", path = "../askama_shared" } +askama_derive = { version = "0.7.2", path = "../askama_derive" } +askama_shared = { version = "0.7.2", path = "../askama_shared" } iron = { version = ">= 0.5, < 0.7", optional = true } rocket = { version = "0.3", optional = true } actix-web = { version = "0.7", optional = true } diff --git a/askama_derive/Cargo.toml b/askama_derive/Cargo.toml index d59f140..def1f5d 100644 --- a/askama_derive/Cargo.toml +++ b/askama_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_derive" -version = "0.7.1" +version = "0.7.2" authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"] description = "Procedural macro package for Askama" homepage = "https://github.com/djc/askama" @@ -18,7 +18,7 @@ rocket = ["askama_shared/rocket"] actix-web = ["askama_shared/actix-web"] [dependencies] -askama_shared = { version = "0.7.1", path = "../askama_shared" } +askama_shared = { version = "0.7.2", path = "../askama_shared" } nom = "4" proc-macro2 = "0.4" quote = "0.6" diff --git a/askama_shared/Cargo.toml b/askama_shared/Cargo.toml index 9106e96..c81ab9f 100644 --- a/askama_shared/Cargo.toml +++ b/askama_shared/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_shared" -version = "0.7.1" +version = "0.7.2" authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"] description = "Shared code for Askama" homepage = "https://github.com/djc/askama" |