blob: bbc174d4da1e2ee36279b6c87f42465ce51bf947 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
[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"]
[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"
|