diff options
author | Jonas Platte <jplatte+git@posteo.de> | 2022-03-31 22:35:28 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2022-03-31 23:12:21 +0200 |
commit | 521834209beefdce1d0cba2a57d5cc8c303267ab (patch) | |
tree | 32588b19bb93ae32f619b5af749d31462054b204 /askama_axum | |
parent | 8ee5eeef15e672c5b10d70444ea86e4b34dbd5ae (diff) | |
download | askama-521834209beefdce1d0cba2a57d5cc8c303267ab.tar.gz askama-521834209beefdce1d0cba2a57d5cc8c303267ab.tar.bz2 askama-521834209beefdce1d0cba2a57d5cc8c303267ab.zip |
Upgrade to axum-core 0.2 / axum 0.5
Diffstat (limited to '')
-rw-r--r-- | askama_axum/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/askama_axum/Cargo.toml b/askama_axum/Cargo.toml index b972626..283fd2a 100644 --- a/askama_axum/Cargo.toml +++ b/askama_axum/Cargo.toml @@ -14,12 +14,12 @@ readme = "README.md" [dependencies] askama = { version = "0.11.0", path = "../askama", default-features = false, features = ["with-axum", "mime", "mime_guess"] } -axum-core = "0.1" +axum-core = "0.2" http = "0.2" http-body = "0.4" [dev-dependencies] -axum = { version = "0.4", default-features = false } +axum = { version = "0.5", default-features = false } hyper = { version = "0.14", features = ["full"] } tokio = { version = "1.0", features = ["full"] } tower = { version = "0.4", features = ["util"] } |