diff --git a/src/daemon/config.rs b/src/daemon/config.rs index 92ceeb2..7262282 100644 --- a/src/daemon/config.rs +++ b/src/daemon/config.rs @@ -114,8 +114,10 @@ async fn read_config_directory + Sync + Send>( ); return Ok(builder); } - error!("Error reading config fragment directory {}: {e}", - path.as_ref().to_string_lossy()); + error!( + "Error reading config fragment directory {}: {e}", + path.as_ref().to_string_lossy() + ); return Err(e.into()); } }; diff --git a/src/lib.rs b/src/lib.rs index 0b18f33..1126061 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -27,7 +27,6 @@ pub mod daemon; pub mod hardware; pub mod power; pub mod proxy; -pub mod wakehook; pub mod wifi; #[cfg(test)]