Skip to content

Commit

Permalink
Merge branch 'clippy-feature-rename' into fix/clippy-feature-rename
Browse files Browse the repository at this point in the history
  • Loading branch information
kaj committed Jun 1, 2024
2 parents 9dca648 + 946b4e4 commit 39401f1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
matrix:
rust:
- stable
- 1.64.0
- 1.60.0
- 1.58.1
- 1.75.0
- 1.67.1
- 1.61.0
- beta
- nightly
steps:
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ructe"
version = "0.17.0"
version = "0.17.1-PRE"
authors = ["Rasmus Kaj <[email protected]>"]
description = "Rust Compiled Templates, efficient type-safe web page templates."
documentation = "https://docs.rs/ructe"
Expand All @@ -10,7 +10,7 @@ keywords = ["web", "templating", "template", "html"]
categories = ["template-engine", "web-programming"]
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.58.1"
rust-version = "1.61.0"

[features]
sass = ["rsass"]
Expand All @@ -24,9 +24,9 @@ tide014 = ["tide013"]
tide013 = ["http-types"]

[dependencies]
base64 = "0.21.0"
base64 = "0.22.1"
bytecount = "0.6.0"
itertools = "0.12.0"
itertools = "0.13.0"
md5 = "0.7"
nom = "7.1.0"

Expand Down
3 changes: 1 addition & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -338,8 +338,7 @@ fn handle_entries(
create_dir_all(&outdir)?;
let mut modrs = Vec::with_capacity(512);
modrs.write_all(
b"#[allow(clippy::useless_attribute))]\n\
#[allow(unused)]\n\
b"#[allow(clippy::useless_attribute, unused)]\n\
use super::{Html,ToHtml};\n",
)?;
handle_entries(&mut modrs, &path, &outdir)?;
Expand Down

0 comments on commit 39401f1

Please sign in to comment.