hUI/hui-glium/Cargo.toml

23 lines
545 B
TOML
Raw Permalink Normal View History

2024-02-17 14:43:46 -06:00
[package]
name = "hui-glium"
2024-02-19 10:49:01 -06:00
description = "glium render backend for `hui`"
2024-02-17 14:43:46 -06:00
repository = "https://github.com/griffi-gh/hui"
2024-02-19 10:49:01 -06:00
readme = "../README.md"
2024-02-17 14:43:46 -06:00
authors = ["griffi-gh <prasol258@gmail.com>"]
2024-03-25 12:41:44 -05:00
version = "0.1.0-alpha.5"
rust-version = "1.80"
2024-02-17 14:43:46 -06:00
edition = "2021"
license = "GPL-3.0-or-later"
publish = true
2024-02-17 14:56:21 -06:00
include = [
"shaders/**/*",
"src/**/*.rs",
"Cargo.toml",
]
2024-02-17 14:43:46 -06:00
[dependencies]
2024-03-25 12:41:44 -05:00
hui = { version = "=0.1.0-alpha.5", path = "../hui", default-features = false }
2024-08-04 11:06:49 -05:00
glium = { version = "0.35", default-features = false }
glam = "0.28"
2024-02-17 14:43:46 -06:00
log = "0.4"