fix dumb rustfmt version and bump dependency versions

This commit is contained in:
Milim 2023-08-18 22:04:34 +02:00
parent 5aca5c0d0d
commit 21403d0a48
2 changed files with 121 additions and 113 deletions

View file

@ -76,7 +76,7 @@ impl Config {
let debug: bool = globals.get::<_, bool>("debug")?;
let logging:bool= globals.get::<_, bool>("logging")?;
if !logging_initialized {
set_logging_level(debug, logging);
}
@ -164,7 +164,6 @@ impl Config {
/// a helper function that sets the proper logging level
fn set_logging_level(debug: bool, logging: bool) {
if let Ok(pkg_env_var) = std::env::var("PKG_ENV") {
if pkg_env_var.to_lowercase() == "dev" {
env_logger::Builder::new()