Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions askama/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "askama"
version = "0.15.3"
version = "0.15.4"
description = "Type-safe, compiled Jinja-like templates for Rust"
keywords = ["markup", "template", "jinja2", "html"]
categories = ["template-engine"]
Expand All @@ -27,7 +27,7 @@ harness = false
itoa = "1.0.11"

# needed by feature "derive"
askama_macros = { version = "=0.15.3", path = "../askama_macros", default-features = false, optional = true }
askama_macros = { version = "=0.15.4", path = "../askama_macros", default-features = false, optional = true }

# needed by feature "serde_json"
serde = { version = "1.0", optional = true, default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions askama_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "askama_derive"
version = "0.15.3"
version = "0.15.4"
description = "Code generator of Askama templating engine"
homepage = "https://github.com/askama-rs/askama"
repository = "https://github.com/askama-rs/askama"
Expand All @@ -18,7 +18,7 @@ name = "derive-template"
harness = false

[dependencies]
parser = { package = "askama_parser", version = "=0.15.3", path = "../askama_parser" }
parser = { package = "askama_parser", version = "=0.15.4", path = "../askama_parser" }

basic-toml = { version = "0.1.1", optional = true }
pulldown-cmark = { version = "0.13.0", optional = true, default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion askama_escape/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "askama_escape"
version = "0.15.3"
version = "0.15.4"
description = "HTML escaping, extracted from Askama"
keywords = ["html", "escaping"]
categories = ["no-std", "no-std::no-alloc"]
Expand Down
4 changes: 2 additions & 2 deletions askama_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "askama_macros"
version = "0.15.3"
version = "0.15.4"
description = "Procedural macro package for Askama"
homepage = "https://github.com/askama-rs/askama"
repository = "https://github.com/askama-rs/askama"
Expand All @@ -17,7 +17,7 @@ rustdoc-args = ["--generate-link-to-definition", "--cfg=docsrs"]
proc-macro = true

[dependencies]
askama_derive = { package = "askama_derive", path = "../askama_derive", version = "=0.15.3", default-features = false, features = ["external-sources", "proc-macro"] }
askama_derive = { package = "askama_derive", path = "../askama_derive", version = "=0.15.4", default-features = false, features = ["external-sources", "proc-macro"] }

[features]
default = ["config", "derive", "std", "urlencode"]
Expand Down
2 changes: 1 addition & 1 deletion askama_parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "askama_parser"
version = "0.15.3"
version = "0.15.4"
description = "Parser for Askama templates"
documentation = "https://docs.rs/askama"
keywords = ["markup", "template", "jinja2", "html"]
Expand Down