aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 880516bf88ce8c17259e009e28eb380c724761e0 (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
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "opengl-registry"
version = "0.1.1"
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]
quick-xml = { version = "0.27.1" }
thiserror = "1.0.38"

[dev-dependencies]
pretty_assertions = "1.3.0"
criterion = "0.4.0"
ridicule = "0.3.0"

[[bench]]
name = "registry"
harness = false