Files
2026-07-13 12:24:51 +08:00

37 lines
1.3 KiB
TOML

[package]
name = "fyrox-ui"
version = "2.0.0-rc.1"
authors = ["Dmitry Stepanov <d1maxa@yandex.ru>"]
edition = "2021"
license = "MIT"
description = "Extendable UI library"
keywords = ["ui", "game", "gui"]
categories = ["game-development", "gui"]
include = ["/src/**/*", "/Cargo.toml", "/LICENSE", "/README.md"]
homepage = "https://fyrox.rs"
documentation = "https://docs.rs/fyrox-ui"
repository = "https://github.com/FyroxEngine/Fyrox"
readme = "README.md"
rust-version = "1.94"
[dependencies]
fyrox-core = { path = "../fyrox-core", version = "2.0.0-rc.1", features = ["serde"] }
fyrox-resource = { path = "../fyrox-resource", version = "2.0.0-rc.1" }
fyrox-texture = { path = "../fyrox-texture", version = "2.0.0-rc.1" }
fyrox-graph = { path = "../fyrox-graph", version = "2.0.0-rc.1" }
fyrox-animation = { path = "../fyrox-animation", version = "2.0.0-rc.1" }
fyrox-material = { path = "../fyrox-material", version = "2.0.0-rc.1" }
copypasta = "0.10.1"
fontdue = "0.9.2"
notify = "8"
fxhash = "0.2.1"
strum = "0.27"
strum_macros = "0.27"
serde = { version = "1", features = ["derive"] }
bytemuck = { version = "1.23.2", features = ["derive"] }
uuid = { version = "1", features = ["v4", "default"] }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
sysinfo = "0.29.0"
directories = "5.0.1"