Fix clippy error
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
notplants 2022-05-12 12:24:17 +02:00
parent 99fd3be4ad
commit 5ea6a86700
2 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View File

@ -1111,7 +1111,7 @@ dependencies = [
[[package]]
name = "golgi"
version = "0.1.1"
source = "git+https://git.coopcloud.tech/golgi-ssb/golgi#77dd75bcd4649b7487069a61e2a8069b49f60a1d"
source = "git+https://git.coopcloud.tech/golgi-ssb/golgi.git#77dd75bcd4649b7487069a61e2a8069b49f60a1d"
dependencies = [
"async-std",
"async-stream 0.3.3",

View File

@ -34,8 +34,8 @@ use utils::theme::Theme;
// load the application configuration and create the theme switcher
lazy_static! {
static ref SERVER_CONFIG: ServerConfig = ServerConfig::new()
.expect("Failed to load rouille configuration values on server startup");
static ref SERVER_CONFIG: ServerConfig =
ServerConfig::new().expect("Failed to load rouille configuration values on server startup");
static ref THEME: RwLock<Theme> = RwLock::new(Theme::Light);
}