hUI/hui-glium/Cargo.toml

23 lines
545 B
TOML
Raw Normal View History

2024-02-17 20:43:46 +00:00
[package]
name = "hui-glium"
2024-02-19 16:49:01 +00:00
description = "glium render backend for `hui`"
2024-02-17 20:43:46 +00:00
repository = "https://github.com/griffi-gh/hui"
2024-02-19 16:49:01 +00:00
readme = "../README.md"
2024-02-17 20:43:46 +00:00
authors = ["griffi-gh <prasol258@gmail.com>"]
2024-02-21 10:06:13 +00:00
version = "0.1.0-alpha.4"
2024-03-25 17:32:31 +00:00
rust-version = "1.75"
2024-02-17 20:43:46 +00:00
edition = "2021"
license = "GPL-3.0-or-later"
publish = true
2024-02-17 20:56:21 +00:00
include = [
"shaders/**/*",
"src/**/*.rs",
"Cargo.toml",
]
2024-02-17 20:43:46 +00:00
[dependencies]
2024-02-21 10:19:14 +00:00
hui = { version = "=0.1.0-alpha.4", path = "../hui", default-features = false }
2024-02-19 16:24:31 +00:00
glium = { version = "0.34", default-features = false }
2024-03-24 20:00:46 +00:00
glam = "0.27"
2024-02-17 20:43:46 +00:00
log = "0.4"