blob: 816f135a01280f14d4e2d28384fd9e2481e6c848 (
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-macros"
version = "0.1.0"
license = "MIT OR Apache-2.0"
edition = "2021"
description = "Macros utilizing the OpenGL API and Extension Registry"
[lib]
proc-macro = true
[dependencies]
once_cell = "1.17.0"
proc-macro2 = "1.0.51"
convert_case = "0.6.0"
opengl-registry = { git = "https://git.hampusmat.com/opengl-registry-rs" }
regex = "1.7.1"
[dev-dependencies]
quote = "1.0.23"
pretty_assertions = "1.3.0"
|