diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2020-09-11 21:08:03 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2020-09-11 23:04:14 +0200 |
commit | 17b9d06814cee84bfd57b73e1941b63187ec5f65 (patch) | |
tree | e0044d2fb0768674093e7647d5b785d04428a1e2 /askama_actix | |
parent | a94835d6de0add5f9fd6095bbe96525d8ac2579a (diff) | |
download | askama-17b9d06814cee84bfd57b73e1941b63187ec5f65.tar.gz askama-17b9d06814cee84bfd57b73e1941b63187ec5f65.tar.bz2 askama-17b9d06814cee84bfd57b73e1941b63187ec5f65.zip |
actix: upgrade to actix 3
Diffstat (limited to 'askama_actix')
-rw-r--r-- | askama_actix/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/askama_actix/Cargo.toml b/askama_actix/Cargo.toml index 05439e1..7b2456d 100644 --- a/askama_actix/Cargo.toml +++ b/askama_actix/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_actix" -version = "0.10.0" +version = "0.11.0" authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"] description = "Actix-Web integration for Askama templates" documentation = "https://docs.rs/askama" @@ -14,7 +14,7 @@ readme = "README.md" edition = "2018" [dependencies] -actix-web = { version = "2" } +actix-web = { version = "3" } askama = { version = "0.10", path = "../askama", features = ["with-actix-web", "mime", "mime_guess"] } bytes = { version = "0.5" } futures-util = { version = "0.3" } |