mirror of
https://github.com/griffi-gh/hUI.git
synced 2025-04-03 22:46:28 -05:00
28 lines
671 B
TOML
28 lines
671 B
TOML
[package]
|
|
name = "hui-winit"
|
|
description = "winit platform backend for `hui`"
|
|
keywords = ["ui", "gui", "portable", "gamedev", "hui"]
|
|
categories = ["gui", "game-development"]
|
|
repository = "https://github.com/griffi-gh/hui"
|
|
readme = "../README.md"
|
|
authors = ["griffi-gh <prasol258@gmail.com>"]
|
|
version = "0.1.0-alpha.7"
|
|
rust-version = "1.85"
|
|
edition = "2024"
|
|
license = "GPL-3.0-or-later"
|
|
publish = true
|
|
include = [
|
|
"src/**/*.rs",
|
|
"Cargo.toml",
|
|
]
|
|
|
|
[dependencies]
|
|
hui = { version = "=0.1.0-alpha.7", path = "../hui", default-features = false }
|
|
winit = { version = "0.30", default-features = false, features = ["x11"] }
|
|
glam = "0.30"
|
|
log = "0.4"
|
|
|
|
[features]
|
|
default = []
|
|
|