Remove unused extern crates

This commit is contained in:
link2xt
2022-06-04 22:58:46 +00:00
parent 13e724c8ea
commit 05abaa8461
2 changed files with 2 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
#![deny(clippy::all)]
#![deny(unused, clippy::all)]
#![allow(
non_camel_case_types,
non_snake_case,
@@ -11,8 +11,6 @@
#[macro_use]
extern crate human_panic;
extern crate num_traits;
extern crate serde_json;
use std::collections::BTreeMap;
use std::convert::TryFrom;

View File

@@ -2,6 +2,7 @@
#![forbid(unsafe_code)]
#![deny(
unused,
clippy::correctness,
missing_debug_implementations,
clippy::all,
@@ -24,7 +25,6 @@ extern crate num_derive;
extern crate smallvec;
#[macro_use]
extern crate rusqlite;
extern crate strum;
#[macro_use]
extern crate strum_macros;