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