diff --git a/Cargo.lock b/Cargo.lock index 0f043b2..3a31650 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1298,7 +1298,7 @@ dependencies = [ "httpdate", "itoa", "pin-project-lite", - "socket2 0.5.7", + "socket2 0.4.10", "tokio", "tower-service", "tracing", @@ -3917,7 +3917,7 @@ dependencies = [ [[package]] name = "wolves_oxidised" version = "0.1.0" -source = "git+https://forgejo.skynet.ie/Skynet/wolves-oxidised.git#eee6a76c695a36f1fe220fdeafd5a43757e50527" +source = "git+https://forgejo.skynet.ie/Skynet/wolves-oxidised.git#0097761c6973b490ffd0ec5b5ca45d3ab9c7915a" dependencies = [ "reqwest 0.12.9", "serde", diff --git a/src/lib.rs b/src/lib.rs index 05f6125..b449861 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -22,6 +22,7 @@ use sqlx::{ use std::{env, str::FromStr, sync::Arc}; use tokio::sync::RwLock; +#[derive(Debug)] pub struct Config { // manages where teh database is stored pub home: String, @@ -98,6 +99,7 @@ pub fn get_config() -> Config { if let Ok(x) = env::var("WOLVES_API") { config.wolves_api = x.trim().to_string(); } + dbg!(&config); config }