19 lines
625 B
TOML
19 lines
625 B
TOML
[package]
|
|
name = "fyroxed"
|
|
version = "2.0.0-rc.1"
|
|
license = "MIT"
|
|
authors = ["Dmitry Stepanov <d1maxa@yandex.ru>"]
|
|
edition = "2021"
|
|
rust-version = "1.94"
|
|
description = "A standalone scene editor for Fyrox game engine"
|
|
homepage = "https://github.com/FyroxEngine/Fyrox"
|
|
keywords = ["fyrox", "editor", "rust"]
|
|
repository = "https://github.com/FyroxEngine/Fyrox"
|
|
readme = "README.md"
|
|
include = ["/src/**/*", "/Cargo.toml", "/LICENSE", "/README.md"]
|
|
|
|
[dependencies]
|
|
fyrox = { version = "2.0.0-rc.1", path = "../fyrox" }
|
|
fyroxed_base = { version = "2.0.0-rc.1", path = "../editor" }
|
|
clap = { version = "4", features = ["derive"] }
|