15 releases

0.1.14 Jan 3, 2025
0.1.13 Jul 12, 2024
0.1.12 Feb 22, 2024
0.1.11 Dec 2, 2023
0.1.4 May 17, 2022

#368 in GUI

Download history 215/week @ 2024-11-16 333/week @ 2024-11-23 124/week @ 2024-11-30 198/week @ 2024-12-07 237/week @ 2024-12-14 213/week @ 2024-12-21 206/week @ 2024-12-28 313/week @ 2025-01-04 528/week @ 2025-01-11 381/week @ 2025-01-18 372/week @ 2025-01-25 146/week @ 2025-02-01 186/week @ 2025-02-08 318/week @ 2025-02-15 575/week @ 2025-02-22 498/week @ 2025-03-01

1,603 downloads per month

MIT/Apache

205KB
4.5K SLoC

About this crate

This crate offers convenience macros for gvdb. The macros are include_gresource_from_xml!() and include_gresource_from_dir!()

Crates.io

Examples

Compile a GResource XML file and include the bytes in the file.

use gvdb_macros::include_gresource_from_xml;
static GRESOURCE_BYTES: &[u8] = include_gresource_from_xml!("test-data/gresource/test3.gresource.xml");

Scan a directory and create a GResource file with all the contents of the directory.

use gvdb_macros::include_gresource_from_dir;
static GRESOURCE_BYTES: &[u8] = include_gresource_from_dir!("/gvdb/rs/test", "test-data/gresource/");

License

gvdb and gvdb-macros are available under the MIT OR Apache-2.0 license. See the LICENSES folder for the complete license text.

SVG icon files included in test-data/gresource/icons/ are available under the CC0-1.0 license and redistributed from Icon Development Kit. See CC0-1.0.txt and file for complete license text.

Dependencies

~6–13MB
~162K SLoC