1[package]
2name = "khronos_api"
3version = "3.1.0"
4authors = [
5 "Brendan Zabarauskas <bjzaba@yahoo.com.au>",
6 "Corey Richardson",
7 "Arseny Kapoulkine",
8 "Pierre Krieger <pierre.krieger1708@gmail.com>",
9]
10description = "The Khronos XML API Registry, exposed as byte string constants."
11license = "Apache-2.0"
12documentation = "https://docs.rs/khronos_api"
13homepage = "https://github.com/brendanzab/gl-rs/"
14repository = "https://github.com/brendanzab/gl-rs/"
15readme = "README.md"
16
17# Only include what we need here. The git submodules are quite large, and would
18# exceed the maximimum crate size if we didn't do this
19include = [
20 "/README.md",
21 "/src/**/*",
22 "/Cargo.toml",
23 "/build.rs",
24 "/api/xml/**/*.xml",
25 "/api_angle/scripts/**/*.xml",
26 "/api_egl/api/**/*.xml",
27 "/api_webgl/specs/latest/**/*.idl",
28 "/api_webgl/extensions/**/extension.xml",
29]
30
31categories = ["rendering::graphics-api"]
32keywords = ["gl", "egl", "opengl", "khronos"]
33