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

24 lines
932 B
TOML

[package]
name = "fyrox"
version = "2.0.0-rc.1"
authors = ["Dmitry Stepanov <d1maxa@yandex.ru>", "Fyrox Engine Contributors"]
edition = "2021"
license = "MIT"
description = "Feature-rich, easy-to-use, 2D/3D game engine with a scene editor. Like Godot, but in Rust."
keywords = ["sound", "game", "engine", "3d", "gui"]
categories = ["game-engines", "graphics", "gui", "rendering", "wasm"]
include = ["/src/**/*", "/Cargo.toml", "/LICENSE", "/README.md"]
homepage = "https://fyrox.rs"
documentation = "https://docs.rs/fyrox"
repository = "https://github.com/FyroxEngine/Fyrox"
readme = "README.md"
rust-version = "1.94"
[features]
default = ["fyrox-impl"]
dylib = ["fyrox-dylib"]
mesh_analysis = ["fyrox-impl/mesh_analysis", "fyrox-dylib/mesh_analysis"]
[dependencies]
fyrox-impl = { version = "2.0.0-rc.1", path = "../fyrox-impl", optional = true }
fyrox-dylib = { version = "2.0.0-rc.1", path = "../fyrox-dylib", optional = true }