diff --git a/Cargo.toml b/Cargo.toml index 4f2a0c7..167d52a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,7 +46,7 @@ serde_yaml = "0.9.34" tokio = { version = "1.0", features = ["full"] } axum = "0.7" tower = "0.4" -tower-http = { version = "0.5", features = ["cors", "fs"] } +tower-http = { version = "0.5", features = ["cors", "fs", "trace"] } hyper = { version = "1.0", features = ["full"] } [dev-dependencies] diff --git a/src/modes/server.rs b/src/modes/server.rs index 73d9c33..3f40195 100644 --- a/src/modes/server.rs +++ b/src/modes/server.rs @@ -73,7 +73,7 @@ struct StatusInfo { meta_plugins: Vec, } -#[derive(Deserialize)] +#[derive(Debug, Deserialize)] struct TagsQuery { tags: Option, }