mirror of
https://github.com/griffi-gh/hUI.git
synced 2024-11-21 22:58:42 -06:00
create hui-wgpu
This commit is contained in:
parent
3a50d2d0dd
commit
20be787a62
|
@ -1,3 +1,3 @@
|
||||||
[workspace]
|
[workspace]
|
||||||
resolver = "2"
|
resolver = "2"
|
||||||
members = ["hui", "hui-derive", "hui-examples", "hui-glium", "hui-winit"]
|
members = ["hui", "hui-derive", "hui-examples", "hui-glium", "hui-wgpu", "hui-winit"]
|
||||||
|
|
22
hui-wgpu/Cargo.toml
Normal file
22
hui-wgpu/Cargo.toml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
[package]
|
||||||
|
name = "hui-wgpu"
|
||||||
|
description = "wgpu render backend for `hui`"
|
||||||
|
repository = "https://github.com/griffi-gh/hui"
|
||||||
|
readme = "../README.md"
|
||||||
|
authors = ["griffi-gh <prasol258@gmail.com>"]
|
||||||
|
version = "0.1.0-alpha.5"
|
||||||
|
rust-version = "1.75"
|
||||||
|
edition = "2021"
|
||||||
|
license = "GPL-3.0-or-later"
|
||||||
|
publish = true
|
||||||
|
include = [
|
||||||
|
"shaders/**/*",
|
||||||
|
"src/**/*.rs",
|
||||||
|
"Cargo.toml",
|
||||||
|
]
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
hui = { version = "=0.1.0-alpha.5", path = "../hui", default-features = false }
|
||||||
|
#wgpu = "0.20"
|
||||||
|
glam = "0.27"
|
||||||
|
log = "0.4"
|
1
hui-wgpu/src/lib.rs
Normal file
1
hui-wgpu/src/lib.rs
Normal file
|
@ -0,0 +1 @@
|
||||||
|
//TODO
|
Loading…
Reference in a new issue