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

#371 in GUI

Download history 239/week @ 2024-10-27 279/week @ 2024-11-03 322/week @ 2024-11-10 253/week @ 2024-11-17 282/week @ 2024-11-24 131/week @ 2024-12-01 186/week @ 2024-12-08 279/week @ 2024-12-15 165/week @ 2024-12-22 223/week @ 2024-12-29 340/week @ 2025-01-05 505/week @ 2025-01-12 373/week @ 2025-01-19 376/week @ 2025-01-26 142/week @ 2025-02-02 185/week @ 2025-02-09

1,113 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
~163K SLoC