mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-10 01:28:41 -06:00
23 lines
536 B
TOML
23 lines
536 B
TOML
[package]
|
|
name = "kubi-ui"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
hashbrown = "0.14"
|
|
nohash-hasher = "0.2"
|
|
glam = { version = "0.24", features = ["approx"] }
|
|
glium = { git = "https://github.com/glium/glium", rev = "968fc92378caf", optional = true }
|
|
log = "0.4"
|
|
|
|
[dev-dependencies]
|
|
kubi-logging = { path = "../kubi-logging" }
|
|
glium = { git = "https://github.com/glium/glium", rev = "968fc92378caf" }
|
|
winit = "0.29"
|
|
|
|
[features]
|
|
default = ["backend_glium", "builtin"]
|
|
backend_glium = ["dep:glium"]
|
|
builtin = []
|