diff --git a/Cargo.lock b/Cargo.lock index 93d0b90..f1f2ffb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -642,7 +642,7 @@ dependencies = [ "geo-types", "gio", "glib", - "glib-build-tools 0.16.3", + "glib-build-tools 0.18.0", "gtk4", "ifc", "lazy_static", diff --git a/Cargo.nix b/Cargo.nix index 5797675..80c4af3 100644 --- a/Cargo.nix +++ b/Cargo.nix @@ -2138,7 +2138,7 @@ rec { buildDependencies = [ { name = "glib-build-tools"; - packageId = "glib-build-tools 0.16.3"; + packageId = "glib-build-tools 0.18.0"; } ]; diff --git a/dashboard/Cargo.toml b/dashboard/Cargo.toml index fcb0958..217e756 100644 --- a/dashboard/Cargo.toml +++ b/dashboard/Cargo.toml @@ -28,5 +28,5 @@ tokio = { version = "1", features = ["full"] } unic-langid = { version = "0.9" } [build-dependencies] -glib-build-tools = "0.16" +glib-build-tools = "0.18" diff --git a/dashboard/build.rs b/dashboard/build.rs index 2f8c7ae..1d1aa2b 100644 --- a/dashboard/build.rs +++ b/dashboard/build.rs @@ -1,7 +1,7 @@ fn main() { glib_build_tools::compile_resources( - "resources", - "resources/gresources.xml", + &["resources"], + "gresources.xml", "com.luminescent-dreams.dashboard.gresource", ); } diff --git a/dashboard/resources/gresources.xml b/dashboard/gresources.xml similarity index 100% rename from dashboard/resources/gresources.xml rename to dashboard/gresources.xml diff --git a/fitnesstrax/app/build.rs b/fitnesstrax/app/build.rs index 6943702..fdfde32 100644 --- a/fitnesstrax/app/build.rs +++ b/fitnesstrax/app/build.rs @@ -1,7 +1,7 @@ fn main() { glib_build_tools::compile_resources( &["resources"], - "resources/gresources.xml", + "gresources.xml", "com.luminescent-dreams.fitnesstrax.gresource", ); } diff --git a/fitnesstrax/app/resources/gresources.xml b/fitnesstrax/app/gresources.xml similarity index 100% rename from fitnesstrax/app/resources/gresources.xml rename to fitnesstrax/app/gresources.xml