[package] name = "ivy-ui" version = "0.10.3" authors = ["Tim Roberts "] edition = "2018" description = "GUI library for Ivy" readme = "README.md" license-file = "../LICENSE" keywords = [ "graphics", "ui", "game-engine", "game", "vulkan" ] documentation = "https://lib.rs/ivy-ui" repository = "https://github.com/ten3roberts/ivy" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1.0.52" derive-for = "1.2.2" derive_more = "0.99.17" fontdue = "0.6.2" hecs = "0.7.3" hecs-hierarchy = "0.11.0" ivy-base = { path = "../ivy-base", version = "0.10.0" } glfw = "0.43.0" ivy-graphics = { path = "../ivy-graphics", version = "0.10.0" } ivy-image = { path = "../ivy-image", version = "0.10.0" } ivy-rendergraph = { path = "../ivy-rendergraph", version = "0.10.0" } ivy-resources = { path = "../ivy-resources", version = "0.10.0" } ivy-vulkan = { path = "../ivy-vulkan", version = "0.10.0" } ivy-input = { path = "../ivy-input", version = "0.10.0" } ivy-window = { path = "../ivy-window", version = "0.10.0" } thiserror = "1.0.30" glam = "0.20.2" flume = "0.10.10" hecs-schedule = "0.5.0" serde = { version = "1.0.133", features = [ "derive" ], optional = true } records = "0.1.1" [features] default = [] serialize = [ "serde", "glam/serde" ]