kubi/kubi-ui/Cargo.toml
2023-11-23 11:10:35 +01:00

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 = []