| 1 | [package] |
| 2 | name = "gl_generator" |
| 3 | version = "0.14.0" |
| 4 | authors = [ |
| 5 | "Brendan Zabarauskas <bjzaba@yahoo.com.au>" , |
| 6 | "Corey Richardson" , |
| 7 | "Arseny Kapoulkine" , |
| 8 | ] |
| 9 | description = "Code generators for creating bindings to the Khronos OpenGL APIs." |
| 10 | license = "Apache-2.0" |
| 11 | documentation = "https://docs.rs/gl_generator" |
| 12 | homepage = "https://github.com/brendanzab/gl-rs/" |
| 13 | repository = "https://github.com/brendanzab/gl-rs/" |
| 14 | readme = "README.md" |
| 15 | categories = ["api-bindings" , "rendering::graphics-api" ] |
| 16 | keywords = ["gl" , "egl" , "opengl" , "khronos" ] |
| 17 | |
| 18 | [lib] |
| 19 | name = "gl_generator" |
| 20 | path = "lib.rs" |
| 21 | |
| 22 | [features] |
| 23 | unstable_generator_utils = [] |
| 24 | |
| 25 | [dependencies] |
| 26 | khronos_api = { version = "3.1.0" , path = "../khronos_api" } |
| 27 | log = "0.4" |
| 28 | xml-rs = "0.8" |
| 29 | |