[package] name = "opengl-registry" version = "0.2.0" license = "MIT OR Apache-2.0" edition = "2021" description = "Rust API for the OpenGL API and Extension Registry" repository = "https://git.hampusmat.com/opengl-registry-rs" keywords = ["api"] categories = ["api-bindings"] include = [ "LICENSE-APACHE", "LICENSE-MIT", "src", "OpenGL-Registry/xml/gl.xml", "README.md" ] [features] default = ["include-xml"] include-xml = [] [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "doc_cfg"] [dependencies] thiserror = "1.0.38" xml-stinks = { version = "0.1.0" } [dev-dependencies] pretty_assertions = "1.3.0" criterion = "0.4.0" mockall = "0.11.4" xml-stinks = { version = "0.1.0", features = ["deserializer-static-generics"] } [[bench]] name = "registry" harness = false