Set deny(clippy::all)
This commit is contained in:
parent
7016182d01
commit
c74c5d44dc
@ -1,3 +1,5 @@
|
||||
#![deny(clippy::all)]
|
||||
|
||||
pub mod error;
|
||||
pub mod parsable;
|
||||
|
||||
|
@ -1,3 +1,5 @@
|
||||
#![deny(clippy::all)]
|
||||
|
||||
pub mod blocks;
|
||||
pub mod entities;
|
||||
pub mod inventory;
|
||||
|
@ -1,3 +1,5 @@
|
||||
#![deny(clippy::all)]
|
||||
|
||||
pub mod chunks;
|
||||
pub mod generators;
|
||||
|
||||
|
@ -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())
|
||||
|
Loading…
x
Reference in New Issue
Block a user