commit e26a313a744dff177da6b17fb99f2d8d5001a480
parent b98aa5f5f3dbb448eb474448455c94e7db56015e
Author: Zack Newman <zack@philomathiclife.com>
Date: Wed, 27 Mar 2024 12:35:42 -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 = "priv_sep"
readme = "README.md"
repository = "https://git.philomathiclife.com/repos/priv_sep/"
-version = "1.0.0"
+version = "1.0.1"
[lib]
name = "priv_sep"
diff --git a/src/lib.rs b/src/lib.rs
@@ -21,6 +21,14 @@
//! Any error returned from the underlying system call is propagated via [`io::Error`].
#![cfg_attr(all(doc, CHANNEL_NIGHTLY), feature(doc_auto_cfg))]
#![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,