diff options
-rw-r--r-- | askama/Cargo.toml | 2 | ||||
-rw-r--r-- | askama_actix/Cargo.toml | 4 | ||||
-rw-r--r-- | askama_axum/Cargo.toml | 4 | ||||
-rw-r--r-- | askama_gotham/Cargo.toml | 4 | ||||
-rw-r--r-- | askama_hyper/Cargo.toml | 2 | ||||
-rw-r--r-- | askama_mendes/Cargo.toml | 2 | ||||
-rw-r--r-- | askama_rocket/Cargo.toml | 4 | ||||
-rw-r--r-- | askama_tide/Cargo.toml | 4 | ||||
-rw-r--r-- | askama_warp/Cargo.toml | 4 | ||||
-rw-r--r-- | testing/Cargo.toml | 2 |
10 files changed, 16 insertions, 16 deletions
diff --git a/askama/Cargo.toml b/askama/Cargo.toml index 95a2043..62dfe4b 100644 --- a/askama/Cargo.toml +++ b/askama/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama" -version = "0.11.2" +version = "0.12.0" description = "Type-safe, compiled Jinja-like templates for Rust" documentation = "https://docs.rs/askama" keywords = ["markup", "template", "jinja2", "html"] diff --git a/askama_actix/Cargo.toml b/askama_actix/Cargo.toml index a6c124a..4c5dff1 100644 --- a/askama_actix/Cargo.toml +++ b/askama_actix/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_actix" -version = "0.13.1" +version = "0.14.0" description = "Actix-Web integration for Askama templates" documentation = "https://docs.rs/askama" keywords = ["markup", "template", "jinja2", "html"] @@ -15,7 +15,7 @@ rust-version = "1.58" [dependencies] actix-web = { version = "4", default-features = false } -askama = { version = "0.11.2", path = "../askama", default-features = false, features = ["with-actix-web"] } +askama = { version = "0.12", path = "../askama", default-features = false, features = ["with-actix-web"] } [dev-dependencies] actix-rt = { version = "2", default-features = false } diff --git a/askama_axum/Cargo.toml b/askama_axum/Cargo.toml index ee410a7..7c7d85e 100644 --- a/askama_axum/Cargo.toml +++ b/askama_axum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_axum" -version = "0.1.0" +version = "0.3.0" edition = "2021" rust-version = "1.58" description = "Axum integration for Askama templates" @@ -14,7 +14,7 @@ workspace = ".." readme = "README.md" [dependencies] -askama = { version = "0.11.2", path = "../askama", default-features = false, features = ["with-axum", "mime", "mime_guess"] } +askama = { version = "0.12", path = "../askama", default-features = false, features = ["with-axum", "mime", "mime_guess"] } axum-core = "0.3" http = "0.2" diff --git a/askama_gotham/Cargo.toml b/askama_gotham/Cargo.toml index 717d57e..1e3c352 100644 --- a/askama_gotham/Cargo.toml +++ b/askama_gotham/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_gotham" -version = "0.13.0" +version = "0.14.0" description = "Gotham integration for Askama templates" documentation = "https://docs.rs/askama" keywords = ["markup", "template", "jinja2", "html"] @@ -14,7 +14,7 @@ edition = "2021" rust-version = "1.58" [dependencies] -askama = { version = "0.11.2", path = "../askama", default-features = false, features = ["with-gotham", "mime", "mime_guess"] } +askama = { version = "0.12", path = "../askama", default-features = false, features = ["with-gotham", "mime", "mime_guess"] } gotham = { version = "0.7", default-features = false } [dev-dependencies] diff --git a/askama_hyper/Cargo.toml b/askama_hyper/Cargo.toml index dfdfbd0..113ca02 100644 --- a/askama_hyper/Cargo.toml +++ b/askama_hyper/Cargo.toml @@ -14,7 +14,7 @@ edition = "2021" rust-version = "1.58" [dependencies] -askama = { version = "0.11.2", path = "../askama", default-features = false, features = ["with-hyper"] } +askama = { version = "0.12", path = "../askama", default-features = false, features = ["with-hyper"] } hyper = { version = "0.14", default-features = false } [dev-dependencies] diff --git a/askama_mendes/Cargo.toml b/askama_mendes/Cargo.toml index 06fed2f..c4640b1 100644 --- a/askama_mendes/Cargo.toml +++ b/askama_mendes/Cargo.toml @@ -14,7 +14,7 @@ edition = "2021" rust-version = "1.58" [dependencies] -askama = { version = "0.11.2", path = "../askama", default-features = false, features = ["with-mendes", "mime", "mime_guess"] } +askama = { version = "0.12", path = "../askama", default-features = false, features = ["with-mendes", "mime", "mime_guess"] } mendes = "0.1.0" [dev-dependencies] diff --git a/askama_rocket/Cargo.toml b/askama_rocket/Cargo.toml index 4abb112..e15724b 100644 --- a/askama_rocket/Cargo.toml +++ b/askama_rocket/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_rocket" -version = "0.11.0" +version = "0.12.0" description = "Rocket integration for Askama templates" documentation = "https://docs.rs/askama" keywords = ["markup", "template", "jinja2", "html"] @@ -14,7 +14,7 @@ edition = "2021" rust-version = "1.58" [dependencies] -askama = { version = "0.11.2", path = "../askama", default-features = false, features = ["with-rocket", "mime", "mime_guess"] } +askama = { version = "0.12", path = "../askama", default-features = false, features = ["with-rocket", "mime", "mime_guess"] } rocket = { version = "0.5.0-rc.2", default-features = false } [dev-dependencies] diff --git a/askama_tide/Cargo.toml b/askama_tide/Cargo.toml index 056c919..c92abdf 100644 --- a/askama_tide/Cargo.toml +++ b/askama_tide/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_tide" -version = "0.14.0" +version = "0.15.0" edition = "2021" rust-version = "1.58" description = "Tide integration for Askama templates" @@ -13,7 +13,7 @@ workspace = ".." readme = "README.md" [dependencies] -askama = { version = "0.11.2", path = "../askama", default-features = false, features = ["with-tide"] } +askama = { version = "0.12", path = "../askama", default-features = false, features = ["with-tide"] } tide = { version = "0.16", default-features = false } [dev-dependencies] diff --git a/askama_warp/Cargo.toml b/askama_warp/Cargo.toml index f2f05d6..e1176da 100644 --- a/askama_warp/Cargo.toml +++ b/askama_warp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_warp" -version = "0.12.0" +version = "0.13.0" description = "Warp integration for Askama templates" documentation = "https://docs.rs/askama" keywords = ["markup", "template", "jinja2", "html"] @@ -14,7 +14,7 @@ edition = "2021" rust-version = "1.58" [dependencies] -askama = { version = "0.11.2", path = "../askama", default-features = false, features = ["with-warp", "mime", "mime_guess"] } +askama = { version = "0.12", path = "../askama", default-features = false, features = ["with-warp", "mime", "mime_guess"] } warp = { version = "0.3", default-features = false } [dev-dependencies] diff --git a/testing/Cargo.toml b/testing/Cargo.toml index c8326e8..8a68345 100644 --- a/testing/Cargo.toml +++ b/testing/Cargo.toml @@ -13,7 +13,7 @@ serde-json = ["serde_json", "askama/serde-json"] markdown = ["comrak", "askama/markdown"] [dependencies] -askama = { path = "../askama", version = "0.11.2" } +askama = { path = "../askama", version = "0.12" } comrak = { version = "0.16", default-features = false, optional = true } serde_json = { version = "1.0", optional = true } |