Update build tools for dashboard and fitnesstrax

This commit is contained in:
Savanni D'Gerinel 2024-01-25 22:26:20 -05:00
parent dce11dde2b
commit f8d66bbb69
7 changed files with 6 additions and 6 deletions

2
Cargo.lock generated
View File

@ -642,7 +642,7 @@ dependencies = [
"geo-types", "geo-types",
"gio", "gio",
"glib", "glib",
"glib-build-tools 0.16.3", "glib-build-tools 0.18.0",
"gtk4", "gtk4",
"ifc", "ifc",
"lazy_static", "lazy_static",

View File

@ -2138,7 +2138,7 @@ rec {
buildDependencies = [ buildDependencies = [
{ {
name = "glib-build-tools"; name = "glib-build-tools";
packageId = "glib-build-tools 0.16.3"; packageId = "glib-build-tools 0.18.0";
} }
]; ];

View File

@ -28,5 +28,5 @@ tokio = { version = "1", features = ["full"] }
unic-langid = { version = "0.9" } unic-langid = { version = "0.9" }
[build-dependencies] [build-dependencies]
glib-build-tools = "0.16" glib-build-tools = "0.18"

View File

@ -1,7 +1,7 @@
fn main() { fn main() {
glib_build_tools::compile_resources( glib_build_tools::compile_resources(
"resources", &["resources"],
"resources/gresources.xml", "gresources.xml",
"com.luminescent-dreams.dashboard.gresource", "com.luminescent-dreams.dashboard.gresource",
); );
} }

View File

@ -1,7 +1,7 @@
fn main() { fn main() {
glib_build_tools::compile_resources( glib_build_tools::compile_resources(
&["resources"], &["resources"],
"resources/gresources.xml", "gresources.xml",
"com.luminescent-dreams.fitnesstrax.gresource", "com.luminescent-dreams.fitnesstrax.gresource",
); );
} }