diff options
-rw-r--r-- | askama/Cargo.toml | 9 | ||||
-rw-r--r-- | askama_actix/Cargo.toml | 4 | ||||
-rw-r--r-- | askama_derive/Cargo.toml | 4 | ||||
-rw-r--r-- | askama_escape/Cargo.toml | 2 | ||||
-rw-r--r-- | askama_gotham/Cargo.toml | 4 | ||||
-rw-r--r-- | askama_iron/Cargo.toml | 4 | ||||
-rw-r--r-- | askama_rocket/Cargo.toml | 4 | ||||
-rw-r--r-- | askama_shared/Cargo.toml | 4 | ||||
-rw-r--r-- | askama_warp/Cargo.toml | 4 |
9 files changed, 19 insertions, 20 deletions
diff --git a/askama/Cargo.toml b/askama/Cargo.toml index d97bf34..21ad6e2 100644 --- a/askama/Cargo.toml +++ b/askama/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama" -version = "0.9.0" +version = "0.10.0" authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"] 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 } diff --git a/askama_actix/Cargo.toml b/askama_actix/Cargo.toml index 1e857a5..90b68ea 100644 --- a/askama_actix/Cargo.toml +++ b/askama_actix/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_actix" -version = "0.9.0" +version = "0.10.0" authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"] 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" } diff --git a/askama_derive/Cargo.toml b/askama_derive/Cargo.toml index 8b77d12..3bb0bf6 100644 --- a/askama_derive/Cargo.toml +++ b/askama_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_derive" -version = "0.9.0" +version = "0.10.0" authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"] 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" diff --git a/askama_escape/Cargo.toml b/askama_escape/Cargo.toml index 9843a10..46bb053 100644 --- a/askama_escape/Cargo.toml +++ b/askama_escape/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_escape" -version = "0.3.0" +version = "0.10.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_gotham/Cargo.toml b/askama_gotham/Cargo.toml index fcfc93b..b5aa2e1 100644 --- a/askama_gotham/Cargo.toml +++ b/askama_gotham/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_gotham" -version = "0.9.0" +version = "0.10.0" authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"] 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" diff --git a/askama_iron/Cargo.toml b/askama_iron/Cargo.toml index 35c585d..33c8153 100644 --- a/askama_iron/Cargo.toml +++ b/askama_iron/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_iron" -version = "0.9.0" +version = "0.10.0" authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"] 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" } diff --git a/askama_rocket/Cargo.toml b/askama_rocket/Cargo.toml index e557a38..54d4f74 100644 --- a/askama_rocket/Cargo.toml +++ b/askama_rocket/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_rocket" -version = "0.9.0" +version = "0.10.0" authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"] 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 } diff --git a/askama_shared/Cargo.toml b/askama_shared/Cargo.toml index b8ea481..0e2d90d 100644 --- a/askama_shared/Cargo.toml +++ b/askama_shared/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_shared" -version = "0.9.1" +version = "0.10.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.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 diff --git a/askama_warp/Cargo.toml b/askama_warp/Cargo.toml index e526ae4..c5c65ea 100644 --- a/askama_warp/Cargo.toml +++ b/askama_warp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_warp" -version = "0.9.0" +version = "0.10.0" authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>", "Bjørn Madsen <bm@aeons.dk>"] 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] |