From 6df7d81a4eb6171967904fa61600f2e5cac4b65c Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 5 Aug 2023 12:49:56 -0700 Subject: [PATCH] No more need for unknown_lints suppression --- src/run.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/run.rs b/src/run.rs index 1251fa0..e2686a5 100644 --- a/src/run.rs +++ b/src/run.rs @@ -191,7 +191,7 @@ impl Runner { fs::write(path!(project.dir / "Cargo.toml"), manifest_toml)?; let main_rs = b"\ - #![allow(unknown_lints, unused_crate_dependencies, missing_docs)]\n\ + #![allow(unused_crate_dependencies, missing_docs)]\n\ fn main() {}\n\ "; fs::write(path!(project.dir / "main.rs"), &main_rs[..])?;