diff options
author | HampusM <hampus@hampusmat.com> | 2023-03-08 20:35:22 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2023-03-08 20:35:22 +0100 |
commit | f49d77c2961be28c3cc500af185813dd5e83a367 (patch) | |
tree | 020cb77889315fd050c099380b04cc97c3eb4843 /src | |
parent | 87b3898fc5d4e6ee3fed78188ea7da98c16683ab (diff) |
refactor: include registry xml file with include_bytes
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -33,7 +33,7 @@ pub mod command; mod xml; #[cfg(feature = "include-xml")] -const GL_REGISTRY_XML: &str = include_str!("../OpenGL-Registry/xml/gl.xml"); +const GL_REGISTRY_XML: &[u8] = include_bytes!("../OpenGL-Registry/xml/gl.xml"); const REGISTRY_TAG_NAME: &str = "registry"; @@ -53,7 +53,7 @@ impl Registry #[cfg_attr(doc_cfg, doc(cfg(feature = "include-xml")))] pub fn retrieve() -> Result<Registry, RegistryError> { - Self::retrieve_from_bytes(GL_REGISTRY_XML.as_bytes()) + Self::retrieve_from_bytes(GL_REGISTRY_XML) } /// Retrieves the OpenGL registry from XML bytes. |