diff --git a/rust/src/main.rs b/rust/src/main.rs index 6b6d95c..ab1890d 100644 --- a/rust/src/main.rs +++ b/rust/src/main.rs @@ -81,7 +81,7 @@ async fn main() -> MainResult { tracing_subscriber::fmt() // .with_max_level(tracing::Level::DEBUG) // .with_target(false) - .with_env_filter("none,packager=debug,request=debug,sqlx=debug") + // .with_env_filter("none,packager=debug,request=debug,sqlx=debug") .compact() .init(); diff --git a/rust/src/view/mod.rs b/rust/src/view/mod.rs index e5a92e1..1271176 100644 --- a/rust/src/view/mod.rs +++ b/rust/src/view/mod.rs @@ -41,11 +41,10 @@ impl Root { html { head { title { "Packager" } - script src="https://unpkg.com/htmx.org@1.9.2" {} - script src="https://unpkg.com/alpinejs@3.12.1" defer {} - script src="https://cdn.tailwindcss.com" {} - script src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.js" defer {} - link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/font@6.9.96/css/materialdesignicons.min.css" {} + script src="https://unpkg.com/htmx.org@1.9.4" {} + script src="https://unpkg.com/alpinejs@3.12.3" defer {} + script src="https://cdn.tailwindcss.com/3.3.3" {} + link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/font@7.2.96/css/materialdesignicons.min.css" {} link rel="shortcut icon" type="image/svg+xml" href="/favicon.svg" {} script { (PreEscaped(include_str!(concat!(env!("CARGO_MANIFEST_DIR"),"/js/app.js")))) } meta name="htmx-config" content=r#"{"useTemplateFragments":true}"# {}