aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--askama/Cargo.toml6
-rw-r--r--askama_derive/Cargo.toml4
-rw-r--r--askama_shared/Cargo.toml2
-rw-r--r--askama_tide/Cargo.toml2
4 files changed, 7 insertions, 7 deletions
diff --git a/askama/Cargo.toml b/askama/Cargo.toml
index 61ea6d5..aa21dcb 100644
--- a/askama/Cargo.toml
+++ b/askama/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "askama"
-version = "0.10.1"
+version = "0.10.2"
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
description = "Type-safe, compiled Jinja-like templates for Rust"
documentation = "https://docs.rs/askama"
@@ -32,9 +32,9 @@ with-tide = ["askama_derive/tide"]
with-warp = ["askama_derive/warp"]
[dependencies]
-askama_derive = { version = "0.10.1", path = "../askama_derive" }
+askama_derive = { version = "0.10.2", path = "../askama_derive" }
askama_escape = { version = "0.10", path = "../askama_escape" }
-askama_shared = { version = "0.10.2", path = "../askama_shared", default-features = false }
+askama_shared = { version = "0.10.3", path = "../askama_shared", default-features = false }
mime = { version = "0.3", optional = true }
mime_guess = { version = "2.0.0-alpha", optional = true }
diff --git a/askama_derive/Cargo.toml b/askama_derive/Cargo.toml
index 731cca0..8e97647 100644
--- a/askama_derive/Cargo.toml
+++ b/askama_derive/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "askama_derive"
-version = "0.10.1"
+version = "0.10.2"
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
description = "Procedural macro package for Askama"
homepage = "https://github.com/djc/askama"
@@ -22,7 +22,7 @@ tide = []
warp = []
[dependencies]
-askama_shared = { version = "0.10.2", path = "../askama_shared", default-features = false }
+askama_shared = { version = "0.10.3", path = "../askama_shared", default-features = false }
proc-macro2 = "1"
quote = "1"
syn = "1"
diff --git a/askama_shared/Cargo.toml b/askama_shared/Cargo.toml
index 58650f6..40d25f0 100644
--- a/askama_shared/Cargo.toml
+++ b/askama_shared/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "askama_shared"
-version = "0.10.2"
+version = "0.10.3"
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
description = "Shared code for Askama"
homepage = "https://github.com/djc/askama"
diff --git a/askama_tide/Cargo.toml b/askama_tide/Cargo.toml
index 46179a5..8492611 100644
--- a/askama_tide/Cargo.toml
+++ b/askama_tide/Cargo.toml
@@ -13,6 +13,6 @@ workspace = ".."
readme = "README.md"
[dependencies]
-askama = { version = "0.10", path = "../askama", features = ["with-tide"] }
+askama = { version = "0.10.2", path = "../askama", features = ["with-tide"] }
tide = "0.11"
async-std = { version = "1.6.0", features = ["unstable", "attributes"] }