1 | [package] |
2 | name = "khronos_api" |
3 | version = "3.1.0" |
4 | authors = [ |
5 | "Brendan Zabarauskas <bjzaba@yahoo.com.au>" , |
6 | "Corey Richardson" , |
7 | "Arseny Kapoulkine" , |
8 | "Pierre Krieger <pierre.krieger1708@gmail.com>" , |
9 | ] |
10 | description = "The Khronos XML API Registry, exposed as byte string constants." |
11 | license = "Apache-2.0" |
12 | documentation = "https://docs.rs/khronos_api" |
13 | homepage = "https://github.com/brendanzab/gl-rs/" |
14 | repository = "https://github.com/brendanzab/gl-rs/" |
15 | readme = "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 |
19 | include = [ |
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 | |
31 | categories = ["rendering::graphics-api" ] |
32 | keywords = ["gl" , "egl" , "opengl" , "khronos" ] |
33 | |