Set deny(clippy::all)

This commit is contained in:
Garen Tyler 2023-05-03 22:29:00 -06:00
parent 7016182d01
commit c74c5d44dc
Signed by: garentyler
GPG Key ID: D7A048C454CB7054
4 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,5 @@
#![deny(clippy::all)]
pub mod error;
pub mod parsable;

View File

@ -1,3 +1,5 @@
#![deny(clippy::all)]
pub mod blocks;
pub mod entities;
pub mod inventory;

View File

@ -1,3 +1,5 @@
#![deny(clippy::all)]
pub mod chunks;
pub mod generators;

View File

@ -1,7 +1,9 @@
use tracing::{info, instrument, warn};
#![deny(clippy::all)]
use tracing::{info, warn};
use tracing_subscriber::prelude::*;
#[instrument]
#[tracing::instrument]
pub fn main() {
composition::START_TIME
.set(std::time::Instant::now())