diff options
author | Paolo Barbolini <paolo@paolo565.org> | 2021-01-19 22:39:09 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2021-01-19 23:30:10 +0100 |
commit | efa42285e318a253b131fb335fc84ad6679fac44 (patch) | |
tree | 769ea4da792b9c3b1ce0b1c0ba57cee4f4e3b354 /askama_warp | |
parent | 54a2046edc6386ade790c107815c9b9a15512fb4 (diff) | |
download | askama-efa42285e318a253b131fb335fc84ad6679fac44.tar.gz askama-efa42285e318a253b131fb335fc84ad6679fac44.tar.bz2 askama-efa42285e318a253b131fb335fc84ad6679fac44.zip |
Upgrade to warp 0.3
Diffstat (limited to 'askama_warp')
-rw-r--r-- | askama_warp/Cargo.toml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/askama_warp/Cargo.toml b/askama_warp/Cargo.toml index d4f07e2..8cd26b4 100644 --- a/askama_warp/Cargo.toml +++ b/askama_warp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_warp" -version = "0.10.0" +version = "0.11.0" authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>", "Bjørn Madsen <bm@aeons.dk>"] description = "Warp integration for Askama templates" documentation = "https://docs.rs/askama" @@ -15,8 +15,8 @@ edition = "2018" [dependencies] askama = { version = "0.10", path = "../askama", default-features = false, features = ["with-warp", "mime", "mime_guess"] } -warp = { version = "0.2", default-features = false } +warp = { version = "0.3", default-features = false } [dev-dependencies] -tokio-test = "0.2" -tokio = { version = "0.2", features = ["macros"] } +tokio-test = "0.4" +tokio = { version = "1", features = ["macros"] } |