aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--askama/Cargo.toml8
-rw-r--r--askama_actix/Cargo.toml5
-rw-r--r--askama_derive/Cargo.toml4
-rw-r--r--askama_shared/Cargo.toml2
4 files changed, 9 insertions, 10 deletions
diff --git a/askama/Cargo.toml b/askama/Cargo.toml
index cdf836b..eb17c58 100644
--- a/askama/Cargo.toml
+++ b/askama/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "askama"
-version = "0.11.1"
+version = "0.11.2"
description = "Type-safe, compiled Jinja-like templates for Rust"
documentation = "https://docs.rs/askama"
keywords = ["markup", "template", "jinja2", "html"]
@@ -37,9 +37,9 @@ mime = []
mime_guess = []
[dependencies]
-askama_derive = { version = "0.11.2", path = "../askama_derive" }
-askama_escape = { version = "0.10", path = "../askama_escape" }
-askama_shared = { version = "0.12.1", path = "../askama_shared", default-features = false }
+askama_derive = { version = "0.12.0", path = "../askama_derive" }
+askama_escape = { version = "0.10.3", path = "../askama_escape" }
+askama_shared = { version = "0.13.0", path = "../askama_shared", default-features = false }
[package.metadata.docs.rs]
features = ["config", "humansize", "num-traits", "serde-json", "serde-yaml"]
diff --git a/askama_actix/Cargo.toml b/askama_actix/Cargo.toml
index ab5c905..3b9fc91 100644
--- a/askama_actix/Cargo.toml
+++ b/askama_actix/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "askama_actix"
-version = "0.13.0"
+version = "0.13.1"
description = "Actix-Web integration for Askama templates"
documentation = "https://docs.rs/askama"
keywords = ["markup", "template", "jinja2", "html"]
@@ -14,8 +14,7 @@ edition = "2018"
[dependencies]
actix-web = { version = "4", default-features = false }
-askama = { version = "0.11.1", path = "../askama", default-features = false, features = ["with-actix-web"] }
-askama_shared = { version = "0.12.2", path = "../askama_shared" }
+askama = { version = "0.11.2", path = "../askama", default-features = false, features = ["with-actix-web"] }
[dev-dependencies]
actix-rt = { version = "2", default-features = false }
diff --git a/askama_derive/Cargo.toml b/askama_derive/Cargo.toml
index c152219..1752637 100644
--- a/askama_derive/Cargo.toml
+++ b/askama_derive/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "askama_derive"
-version = "0.11.2"
+version = "0.12.0"
description = "Procedural macro package for Askama"
homepage = "https://github.com/djc/askama"
repository = "https://github.com/djc/askama"
@@ -13,4 +13,4 @@ edition = "2018"
proc-macro = true
[dependencies]
-askama_shared = { version = "0.12.1", path = "../askama_shared", default-features = false }
+askama_shared = { version = "0.13.0", path = "../askama_shared", default-features = false }
diff --git a/askama_shared/Cargo.toml b/askama_shared/Cargo.toml
index 9d95b00..8affe58 100644
--- a/askama_shared/Cargo.toml
+++ b/askama_shared/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "askama_shared"
-version = "0.12.2"
+version = "0.13.0"
description = "Shared code for Askama"
homepage = "https://github.com/djc/askama"
repository = "https://github.com/djc/askama"