228-create-unified-config-system #229

Merged
eta357 merged 33 commits from 228-create-unified-config-system into main 2025-06-28 01:13:23 +00:00
4 changed files with 889 additions and 113 deletions
Showing only changes of commit 20e2b03b14 - Show all commits

5
Cargo.lock generated
View File

@ -208,8 +208,6 @@ dependencies = [
"http", "http",
"http-body", "http-body",
"http-body-util", "http-body-util",
"hyper",
"hyper-util",
"itoa", "itoa",
"matchit 0.7.3", "matchit 0.7.3",
"memchr", "memchr",
@ -219,7 +217,6 @@ dependencies = [
"rustversion", "rustversion",
"serde", "serde",
"sync_wrapper", "sync_wrapper",
"tokio",
"tower", "tower",
"tower-layer", "tower-layer",
"tower-service", "tower-service",
@ -2346,7 +2343,7 @@ name = "libretunes"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"axum 0.7.9", "axum 0.8.4",
"axum-login", "axum-login",
"cfg-if", "cfg-if",
"chrono", "chrono",

View File

@ -42,7 +42,7 @@ openssl = { version = "0.10.63", optional = true }
diesel_migrations = { version = "2.1.0", optional = true } diesel_migrations = { version = "2.1.0", optional = true }
pbkdf2 = { version = "0.12.2", features = ["simple"], optional = true } pbkdf2 = { version = "0.12.2", features = ["simple"], optional = true }
tokio = { version = "1", optional = true, features = ["rt-multi-thread"] } tokio = { version = "1", optional = true, features = ["rt-multi-thread"] }
axum = { version = "0.7.5", features = ["tokio", "http1"], default-features = false, optional = true } axum = { version = "0.8.4", features = ["tokio", "http1"], default-features = false, optional = true }
tower = { version = "0.5.1", optional = true, features = ["util"] } tower = { version = "0.5.1", optional = true, features = ["util"] }
tower-http = { version = "0.6.1", optional = true, features = ["fs"] } tower-http = { version = "0.6.1", optional = true, features = ["fs"] }
thiserror = "1.0.57" thiserror = "1.0.57"