diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2023-01-30 09:51:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-30 09:51:23 +0100 |
commit | 3003d86264680433e789d2726d0d12d2c6267c40 (patch) | |
tree | c7e74c13df73d05ec75ee8feec6416733e1de141 /askama_tide | |
parent | 23326b4765b04cb13dd6c72f2103ff9bd6d44d7d (diff) | |
download | askama-3003d86264680433e789d2726d0d12d2c6267c40.tar.gz askama-3003d86264680433e789d2726d0d12d2c6267c40.tar.bz2 askama-3003d86264680433e789d2726d0d12d2c6267c40.zip |
Apply clippy suggestions for 1.67 (#769)
Diffstat (limited to 'askama_tide')
-rw-r--r-- | askama_tide/Cargo.toml | 3 | ||||
-rw-r--r-- | askama_tide/tests/tide.rs | 1 |
2 files changed, 2 insertions, 2 deletions
diff --git a/askama_tide/Cargo.toml b/askama_tide/Cargo.toml index 328a661..056c919 100644 --- a/askama_tide/Cargo.toml +++ b/askama_tide/Cargo.toml @@ -1,7 +1,8 @@ [package] name = "askama_tide" version = "0.14.0" -edition = "2018" +edition = "2021" +rust-version = "1.58" description = "Tide integration for Askama templates" keywords = ["markup", "template", "html", "tide", "http-types"] homepage = "https://github.com/djc/askama" diff --git a/askama_tide/tests/tide.rs b/askama_tide/tests/tide.rs index 6fa1418..44a065e 100644 --- a/askama_tide/tests/tide.rs +++ b/askama_tide/tests/tide.rs @@ -1,6 +1,5 @@ use askama::Template; use async_std::prelude::*; -use std::convert::TryInto; use tide::{http::mime::HTML, Body, Response}; #[derive(Template)] |