diff options
| author | Fuwn <[email protected]> | 2021-04-27 17:03:12 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-04-27 17:03:12 -0700 |
| commit | a0e11d67da6d0a4e35de6a76cc10edd70c747f6e (patch) | |
| tree | 37cbc72a6c351cedffb5f3d03a8dd2e801f4e5cd /src | |
| parent | feature: New configuration file format (diff) | |
| download | whirl-a0e11d67da6d0a4e35de6a76cc10edd70c747f6e.tar.xz whirl-a0e11d67da6d0a4e35de6a76cc10edd70c747f6e.zip | |
fmt: ...
Diffstat (limited to 'src')
| -rw-r--r-- | src/config/mod.rs | 1 | ||||
| -rw-r--r-- | src/main.rs | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/config/mod.rs b/src/config/mod.rs index f57335d..17f0b30 100644 --- a/src/config/mod.rs +++ b/src/config/mod.rs @@ -2,7 +2,6 @@ // SPDX-License-Identifier: GPL-3.0-only use config::{ConfigError, File}; -use serde::Deserialize; use serde_derive::{Deserialize, Serialize}; #[derive(Serialize, Deserialize, Debug)] diff --git a/src/main.rs b/src/main.rs index 82dcfb6..04f07bc 100644 --- a/src/main.rs +++ b/src/main.rs @@ -19,7 +19,6 @@ use whirl::{ }, }, }; -use log::LevelFilter; #[tokio::main] async fn main() -> Result<(), Box<dyn Error>> { |