forked from rinja-rs/askama
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
19 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "askama" | ||
version = "0.9.0" | ||
version = "0.10.0" | ||
authors = ["Dirkjan Ochtman <[email protected]>"] | ||
description = "Type-safe, compiled Jinja-like templates for Rust" | ||
documentation = "https://docs.rs/askama" | ||
|
@@ -14,7 +14,6 @@ readme = "../README.md" | |
edition = "2018" | ||
|
||
[badges] | ||
azure-devops = { project = "dochtman/Projects", pipeline = "Askama", build = "2" } | ||
maintenance = { status = "actively-developed" } | ||
|
||
[features] | ||
|
@@ -32,9 +31,9 @@ with-gotham = ["askama_derive/gotham"] | |
with-warp = ["askama_derive/warp"] | ||
|
||
[dependencies] | ||
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 } | ||
askama_derive = { version = "0.10", path = "../askama_derive" } | ||
askama_escape = { version = "0.10", path = "../askama_escape" } | ||
askama_shared = { version = "0.10", path = "../askama_shared", default-features = false } | ||
mime = { version = "0.3", optional = true } | ||
mime_guess = { version = "2.0.0-alpha", optional = true } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "askama_actix" | ||
version = "0.9.0" | ||
version = "0.10.0" | ||
authors = ["Dirkjan Ochtman <[email protected]>"] | ||
description = "Actix-Web integration for Askama templates" | ||
documentation = "https://docs.rs/askama" | ||
|
@@ -14,7 +14,7 @@ edition = "2018" | |
|
||
[dependencies] | ||
actix-web = { version = "2" } | ||
askama = { version = "0.9.0", path = "../askama", features = ["with-actix-web", "mime", "mime_guess"] } | ||
askama = { version = "0.10", path = "../askama", features = ["with-actix-web", "mime", "mime_guess"] } | ||
bytes = { version = "0.5" } | ||
futures = { version = "0.3" } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "askama_derive" | ||
version = "0.9.0" | ||
version = "0.10.0" | ||
authors = ["Dirkjan Ochtman <[email protected]>"] | ||
description = "Procedural macro package for Askama" | ||
homepage = "https://github.com/djc/askama" | ||
|
@@ -20,7 +20,7 @@ gotham = [] | |
warp = [] | ||
|
||
[dependencies] | ||
askama_shared = { version = "0.9", path = "../askama_shared" } | ||
askama_shared = { version = "0.10", path = "../askama_shared" } | ||
proc-macro2 = "1" | ||
quote = "1" | ||
syn = "1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "askama_escape" | ||
version = "0.3.0" | ||
version = "0.10.0" | ||
authors = ["Dirkjan Ochtman <[email protected]>"] | ||
description = "Optimized HTML escaping code, extracted from Askama" | ||
documentation = "https://docs.rs/askama_escape" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "askama_gotham" | ||
version = "0.9.0" | ||
version = "0.10.0" | ||
authors = ["Dirkjan Ochtman <[email protected]>"] | ||
description = "Gotham integration for Askama templates" | ||
documentation = "https://docs.rs/askama" | ||
|
@@ -13,7 +13,7 @@ workspace = ".." | |
edition = "2018" | ||
|
||
[dependencies] | ||
askama = { version = "0.9.0", path = "../askama", features = ["with-gotham", "mime", "mime_guess"] } | ||
askama = { version = "0.10", path = "../askama", features = ["with-gotham", "mime", "mime_guess"] } | ||
gotham = { version = "0.4", default-features = false } | ||
hyper = "0.12" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "askama_iron" | ||
version = "0.9.0" | ||
version = "0.10.0" | ||
authors = ["Dirkjan Ochtman <[email protected]>"] | ||
description = "Iron integration for Askama templates" | ||
documentation = "https://docs.rs/askama" | ||
|
@@ -13,5 +13,5 @@ workspace = ".." | |
edition = "2018" | ||
|
||
[dependencies] | ||
askama = { version = "0.9.0", path = "../askama", features = ["with-iron"] } | ||
askama = { version = "0.10", path = "../askama", features = ["with-iron"] } | ||
iron = { version = ">= 0.5, < 0.7" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "askama_rocket" | ||
version = "0.9.0" | ||
version = "0.10.0" | ||
authors = ["Dirkjan Ochtman <[email protected]>"] | ||
description = "Rocket integration for Askama templates" | ||
documentation = "https://docs.rs/askama" | ||
|
@@ -13,5 +13,5 @@ workspace = ".." | |
edition = "2018" | ||
|
||
[dependencies] | ||
askama = { version = "0.9.0", path = "../askama", features = ["with-rocket", "mime", "mime_guess"] } | ||
askama = { version = "0.10", path = "../askama", features = ["with-rocket", "mime", "mime_guess"] } | ||
rocket = { version = "0.4", default-features = false } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "askama_shared" | ||
version = "0.9.1" | ||
version = "0.10.0" | ||
authors = ["Dirkjan Ochtman <[email protected]>"] | ||
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.3.0", path = "../askama_escape" } | ||
askama_escape = { version = "0.10", path = "../askama_escape" } | ||
humansize = { version = "1.1.0", optional = true } | ||
# default for features for nom don't work result in linker errors: | ||
# https://github.com/rust-lang/rust/issues/62146 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "askama_warp" | ||
version = "0.9.0" | ||
version = "0.10.0" | ||
authors = ["Dirkjan Ochtman <[email protected]>", "Bjørn Madsen <[email protected]>"] | ||
description = "Warp integration for Askama templates" | ||
documentation = "https://docs.rs/askama" | ||
|
@@ -13,7 +13,7 @@ workspace = ".." | |
edition = "2018" | ||
|
||
[dependencies] | ||
askama = { version = "0.9.0", path = "../askama", features = ["with-warp", "mime", "mime_guess"] } | ||
askama = { version = "0.10", path = "../askama", features = ["with-warp", "mime", "mime_guess"] } | ||
warp = { version = "0.2", default-features = false } | ||
|
||
[dev-dependencies] | ||
|