37 lines
1.3 KiB
TOML
37 lines
1.3 KiB
TOML
[package]
|
|
name = "fyroxed_base"
|
|
license = "MIT"
|
|
version = "2.0.0-rc.1"
|
|
authors = ["Dmitry Stepanov <d1maxa@yandex.ru>"]
|
|
edition = "2021"
|
|
rust-version = "1.94"
|
|
description = "A 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", "/resources/**/*"]
|
|
|
|
[dependencies]
|
|
fyrox = { version = "2.0.0-rc.1", path = "../fyrox", default-features = false }
|
|
fyrox-build-tools = { version = "2.0.0-rc.1", path = "../fyrox-build-tools" }
|
|
ron = "0.11"
|
|
serde = { version = "1", features = ["derive"] }
|
|
toml = { version = "0.9", default-features = false, features = ["parse"] }
|
|
toml_edit = "0.23"
|
|
strum = "0.27"
|
|
strum_macros = "0.27"
|
|
open = "5"
|
|
opener = { version = "0.8", default-features = false, features = ["reveal"] }
|
|
rust-fuzzy-search = "0.1.1"
|
|
cargo_metadata = "0.22"
|
|
serde_json = { version = "1", features = ["raw_value", "default", "std", "unbounded_depth"] }
|
|
image = { version = "0.25.1", default-features = false, features = ["gif", "jpeg", "png", "tga", "tiff", "bmp"] }
|
|
imageproc = "0.25.0"
|
|
notify = "8"
|
|
bitflags = "2.9.1"
|
|
|
|
[features]
|
|
default = ["fyrox/default"]
|
|
dylib_engine = ["fyrox/dylib"]
|