aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--askama/Cargo.toml8
-rw-r--r--askama_derive/Cargo.toml4
-rw-r--r--askama_escape/Cargo.toml2
-rw-r--r--askama_shared/Cargo.toml4
4 files changed, 9 insertions, 9 deletions
diff --git a/askama/Cargo.toml b/askama/Cargo.toml
index 6a96976..9d3b2c5 100644
--- a/askama/Cargo.toml
+++ b/askama/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "askama"
-version = "0.8.0"
+version = "0.9.0"
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
description = "Type-safe, compiled Jinja-like templates for Rust"
documentation = "https://docs.rs/askama"
@@ -30,9 +30,9 @@ with-actix-web = ["actix-web", "askama_derive/actix-web", "mime", "mime_guess",
with-gotham = ["gotham", "askama_derive/gotham", "hyper", "mime", "mime_guess"]
[dependencies]
-askama_derive = { version = "0.8.0", path = "../askama_derive" }
-askama_escape = { version = "0.2.0", path = "../askama_escape" }
-askama_shared = { version = "0.8.0", path = "../askama_shared", default-features = false }
+askama_derive = { version = "0.9.0", path = "../askama_derive" }
+askama_escape = { version = "0.3.0", path = "../askama_escape" }
+askama_shared = { version = "0.9.0", path = "../askama_shared", default-features = false }
iron = { version = ">= 0.5, < 0.7", optional = true }
rocket = { version = "0.4", optional = true }
actix-web = { version = "2", optional = true }
diff --git a/askama_derive/Cargo.toml b/askama_derive/Cargo.toml
index 26cd79d..93755f5 100644
--- a/askama_derive/Cargo.toml
+++ b/askama_derive/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "askama_derive"
-version = "0.8.0"
+version = "0.9.0"
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
description = "Procedural macro package for Askama"
homepage = "https://github.com/djc/askama"
@@ -19,7 +19,7 @@ actix-web = []
gotham = []
[dependencies]
-askama_shared = { version = "0.8", path = "../askama_shared" }
+askama_shared = { version = "0.9", path = "../askama_shared" }
# default for features for nom don't work result in linker errors:
# https://github.com/rust-lang/rust/issues/62146
nom = { version = "5", default-features = false, features = ["std"] }
diff --git a/askama_escape/Cargo.toml b/askama_escape/Cargo.toml
index 6de179e..3ea8f5e 100644
--- a/askama_escape/Cargo.toml
+++ b/askama_escape/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "askama_escape"
-version = "0.2.0"
+version = "0.3.0"
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
description = "Optimized HTML escaping code, extracted from Askama"
documentation = "https://docs.rs/askama_escape"
diff --git a/askama_shared/Cargo.toml b/askama_shared/Cargo.toml
index 15a3243..5a23675 100644
--- a/askama_shared/Cargo.toml
+++ b/askama_shared/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "askama_shared"
-version = "0.8.0"
+version = "0.9.0"
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
description = "Shared code for Askama"
homepage = "https://github.com/djc/askama"
@@ -16,7 +16,7 @@ json = ["serde", "serde_json"]
yaml = ["serde", "serde_yaml"]
[dependencies]
-askama_escape = { version = "0.2.0", path = "../askama_escape" }
+askama_escape = { version = "0.3.0", path = "../askama_escape" }
humansize = { version = "1.1.0", optional = true }
num-traits = { version = "0.2.6", optional = true }
serde = { version = "1.0", optional = true, features = ["derive"] }