aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Shritesh Bhattarai <shritesh@shritesh.com>2021-06-15 09:45:19 -0400
committerLibravatar GitHub <noreply@github.com>2021-06-15 15:45:19 +0200
commitb318d7cbcded2c6dfc66bbe19687f1246a9a9eab (patch)
treeaf453e71287c9fdc8530526609b3c3c4bf3c32fa
parent25eae265a2d14a33a1723bfa0c5dc7a7f6b5a6ab (diff)
downloadaskama-b318d7cbcded2c6dfc66bbe19687f1246a9a9eab.tar.gz
askama-b318d7cbcded2c6dfc66bbe19687f1246a9a9eab.tar.bz2
askama-b318d7cbcded2c6dfc66bbe19687f1246a9a9eab.zip
Support rocket 0.5.0-rc.1 based on @flo-l's PR (#495)
See #412 for earlier iteration.
-rw-r--r--askama_rocket/Cargo.toml4
-rw-r--r--askama_rocket/src/lib.rs2
-rw-r--r--askama_rocket/tests/basic.rs12
-rw-r--r--askama_shared/src/generator.rs6
4 files changed, 10 insertions, 14 deletions
diff --git a/askama_rocket/Cargo.toml b/askama_rocket/Cargo.toml
index bc91cfb..4c87ba0 100644
--- a/askama_rocket/Cargo.toml
+++ b/askama_rocket/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "askama_rocket"
-version = "0.10.0"
+version = "0.11.0-rc.1"
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
description = "Rocket integration for Askama templates"
documentation = "https://docs.rs/askama"
@@ -15,4 +15,4 @@ edition = "2018"
[dependencies]
askama = { version = "0.10", path = "../askama", default-features = false, features = ["with-rocket", "mime", "mime_guess"] }
-rocket = { version = "0.4", default-features = false }
+rocket = { version = "0.5.0-rc.1", default-features = false }
diff --git a/askama_rocket/src/lib.rs b/askama_rocket/src/lib.rs
index 6db3b7b..ee70965 100644
--- a/askama_rocket/src/lib.rs
+++ b/askama_rocket/src/lib.rs
@@ -11,6 +11,6 @@ pub fn respond<T: Template>(t: &T, ext: &str) -> Result<'static> {
let ctype = ContentType::from_extension(ext).ok_or(Status::InternalServerError)?;
Response::build()
.header(ctype)
- .sized_body(Cursor::new(rsp))
+ .sized_body(rsp.len(), Cursor::new(rsp))
.ok()
}
diff --git a/askama_rocket/tests/basic.rs b/askama_rocket/tests/basic.rs
index 0671c4c..bfdb183 100644
--- a/askama_rocket/tests/basic.rs
+++ b/askama_rocket/tests/basic.rs
@@ -1,12 +1,10 @@
-#![feature(proc_macro_hygiene, decl_macro)]
-
#[macro_use]
extern crate rocket;
use askama::Template;
use rocket::http::{ContentType, Status};
-use rocket::local::Client;
+use rocket::local::blocking::Client;
#[derive(Template)]
#[template(path = "hello.html")]
@@ -21,10 +19,10 @@ fn hello() -> HelloTemplate<'static> {
#[test]
fn test_rocket() {
- let rocket = rocket::ignite().mount("/", routes![hello]);
- let client = Client::new(rocket).unwrap();
- let mut rsp = client.get("/").dispatch();
+ let rocket = rocket::build().mount("/", routes![hello]);
+ let client = Client::tracked(rocket).unwrap();
+ let rsp = client.get("/").dispatch();
assert_eq!(rsp.status(), Status::Ok);
assert_eq!(rsp.content_type(), Some(ContentType::HTML));
- assert_eq!(rsp.body_string().unwrap(), "Hello, world!");
+ assert_eq!(rsp.into_string().unwrap(), "Hello, world!");
}
diff --git a/askama_shared/src/generator.rs b/askama_shared/src/generator.rs
index 4bd2a63..638a25f 100644
--- a/askama_shared/src/generator.rs
+++ b/askama_shared/src/generator.rs
@@ -313,17 +313,15 @@ impl<'a, S: std::hash::BuildHasher> Generator<'a, S> {
let param = syn::GenericParam::Lifetime(syn::LifetimeDef::new(lifetime));
self.write_header(
buf,
- "::askama_rocket::Responder<'askama>",
+ "::askama_rocket::Responder<'askama, 'static>",
Some(vec![param]),
)?;
buf.writeln(
"fn respond_to(self, _: &::askama_rocket::Request) \
- -> ::askama_rocket::Result<'askama> {",
+ -> ::askama_rocket::Result<'static> {",
)?;
-
let ext = self.input.extension().unwrap_or("txt");
buf.writeln(&format!("::askama_rocket::respond(&self, {:?})", ext))?;
-
buf.writeln("}")?;
buf.writeln("}")?;
Ok(())