15 releases

new 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

#382 in GUI

Download history 945/week @ 2024-09-13 1881/week @ 2024-09-20 1173/week @ 2024-09-27 477/week @ 2024-10-04 508/week @ 2024-10-11 235/week @ 2024-10-18 242/week @ 2024-10-25 255/week @ 2024-11-01 307/week @ 2024-11-08 208/week @ 2024-11-15 361/week @ 2024-11-22 104/week @ 2024-11-29 220/week @ 2024-12-06 231/week @ 2024-12-13 225/week @ 2024-12-20 74/week @ 2024-12-27

763 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
~155K SLoC