aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: f33fe2006eb8e2aef375a8b47e1ba85717952498 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
name = "opengl-registry"
version = "0.1.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"]

[features]
default = ["include-xml"]
include-xml = []

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "doc_cfg"]

[dependencies]
quick-xml = { version = "0.27.1" }
thiserror = "1.0.38"

[dev-dependencies]
pretty_assertions = "1.3.0"