From b56c11639f9ea5ef1354a1e91ca98541a16bca9b Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Tue, 28 Jan 2020 21:26:13 +0100 Subject: Move Actix-Web integration into separate askama_actix crate --- askama_derive/src/generator.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'askama_derive/src') diff --git a/askama_derive/src/generator.rs b/askama_derive/src/generator.rs index 49e5dda..430afb8 100644 --- a/askama_derive/src/generator.rs +++ b/askama_derive/src/generator.rs @@ -241,15 +241,15 @@ impl<'a> Generator<'a> { // Implement Actix-web's `Responder`. fn impl_actix_web_responder(&mut self, buf: &mut Buffer) { - self.write_header(buf, "::askama::actix_web::Responder", None); - buf.writeln("type Future = ::futures::future::Ready<::std::result::Result<::askama::actix_web::HttpResponse, Self::Error>>;"); - buf.writeln("type Error = ::askama::actix_web::Error;"); + self.write_header(buf, "::actix_web::Responder", None); + buf.writeln("type Future = ::futures::future::Ready<::std::result::Result<::actix_web::HttpResponse, Self::Error>>;"); + buf.writeln("type Error = ::actix_web::Error;"); buf.writeln( - "fn respond_to(self, _req: &::askama::actix_web::HttpRequest) \ + "fn respond_to(self, _req: &::actix_web::HttpRequest) \ -> Self::Future {", ); - buf.writeln("use ::askama::actix_web::TemplateIntoResponse;"); + buf.writeln("use ::askama_actix::TemplateIntoResponse;"); buf.writeln("::futures::future::ready(self.into_response())"); buf.writeln("}"); -- cgit