2023-11-21 07:08:22 -06:00
|
|
|
[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"] }
|
2023-11-21 09:45:41 -06:00
|
|
|
glium = { git = "https://github.com/glium/glium", rev = "968fc92378caf", optional = true }
|
2023-11-22 04:56:46 -06:00
|
|
|
log = "0.4"
|
2023-11-21 07:08:22 -06:00
|
|
|
|
2023-11-22 18:48:04 -06:00
|
|
|
[dev-dependencies]
|
|
|
|
glium = { git = "https://github.com/glium/glium", rev = "968fc92378caf" }
|
|
|
|
|
2023-11-21 07:08:22 -06:00
|
|
|
[features]
|
|
|
|
default = ["backend_glium", "builtin_elements"]
|
|
|
|
backend_glium = ["dep:glium"]
|
|
|
|
builtin_elements = []
|