commit 177519dba61a589d3970c1ccdb4dfd0d2a79ad3f
parent 902fce37b8261a7468ff03afbe861434a2e2f3bf
Author: Zack Newman <zack@philomathiclife.com>
Date: Wed, 27 Mar 2024 12:26:07 -0600
add more lints
Diffstat:
2 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/Cargo.toml b/Cargo.toml
@@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
name = "zfc"
readme = "README.md"
repository = "https://git.philomathiclife.com/repos/zfc/"
-version = "0.3.1"
+version = "0.3.2"
[lib]
name = "zfc"
diff --git a/src/lib.rs b/src/lib.rs
@@ -4,6 +4,14 @@
#![cfg_attr(all(doc, CHANNEL_NIGHTLY), feature(doc_auto_cfg))]
#![no_std]
#![deny(
+ future_incompatible,
+ let_underscore,
+ missing_docs,
+ nonstandard_style,
+ rust_2018_compatibility,
+ rust_2018_idioms,
+ rust_2021_compatibility,
+ rust_2024_compatibility,
unsafe_code,
unused,
warnings,