aboutsummaryrefslogtreecommitdiffstats
path: root/askama_rocket
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--askama_rocket/Cargo.toml2
-rw-r--r--askama_rocket/tests/basic.rs6
2 files changed, 7 insertions, 1 deletions
diff --git a/askama_rocket/Cargo.toml b/askama_rocket/Cargo.toml
index e15724b..e9f5afe 100644
--- a/askama_rocket/Cargo.toml
+++ b/askama_rocket/Cargo.toml
@@ -15,7 +15,7 @@ rust-version = "1.58"
[dependencies]
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 }
+rocket = { version = "0.5.0-rc.3", default-features = false }
[dev-dependencies]
futures-lite = "1.12.0"
diff --git a/askama_rocket/tests/basic.rs b/askama_rocket/tests/basic.rs
index a61c188..1ded705 100644
--- a/askama_rocket/tests/basic.rs
+++ b/askama_rocket/tests/basic.rs
@@ -3,6 +3,7 @@ use askama::Template;
use futures_lite::future::block_on;
use rocket::http::{ContentType, Status};
use rocket::local::asynchronous::Client;
+use rocket::Responder;
#[derive(Template)]
#[template(path = "hello.html")]
@@ -10,6 +11,11 @@ struct HelloTemplate<'a> {
name: &'a str,
}
+#[derive(Responder)]
+struct HelloResponder<'a> {
+ template: HelloTemplate<'a>,
+}
+
#[rocket::get("/")]
fn hello() -> HelloTemplate<'static> {
HelloTemplate { name: "world" }