1
0
mirror of https://github.com/actix/examples synced 2025-06-28 09:50:36 +02:00

Update template-engines/yarte to v4 (#502)

This commit is contained in:
Luca Palmieri
2022-01-29 16:39:36 +00:00
committed by GitHub
parent 8b5de155bd
commit 9a00813b93
3 changed files with 14 additions and 28 deletions

View File

@ -6,15 +6,12 @@ publish = false
edition = "2018"
[dependencies]
actix-web = "3"
env_logger = "0.8"
actix-web = "4.0.0-beta.21"
env_logger = "0.9.0"
yarte = { version = "0.15", features = ["bytes-buf", "html-min"] }
derive_more = "0.99"
[build-dependencies.yarte_helpers]
version = "0.12"
version = "0.15.6"
default-features = false
features = ["config"]
[dev-dependencies]
actix-rt = "1"
features = ["config"]

View File

@ -41,7 +41,7 @@ mod test {
use super::*;
#[actix_rt::test]
#[actix_web::test]
async fn test() {
let mut app = atest::init_service(App::new().service(index)).await;