22 lines
686 B
TOML
22 lines
686 B
TOML
[package]
|
|
name = "fyrox-resource"
|
|
version = "2.0.0-rc.1"
|
|
authors = ["Dmitry Stepanov <d1maxa@yandex.ru>"]
|
|
edition = "2021"
|
|
license = "MIT"
|
|
description = "Asset management crate for the Fyrox engine"
|
|
keywords = ["asset", "resource"]
|
|
categories = ["game-development"]
|
|
include = ["/src/**/*", "/Cargo.toml", "/LICENSE"]
|
|
homepage = "https://fyrox.rs"
|
|
documentation = "https://docs.rs/fyrox-resource"
|
|
repository = "https://github.com/FyroxEngine/Fyrox"
|
|
rust-version = "1.94"
|
|
|
|
[dependencies]
|
|
fyrox-core = { path = "../fyrox-core", version = "2.0.0-rc.1", features = ["serde"] }
|
|
fxhash = "0.2.1"
|
|
ron = "0.11.0"
|
|
serde = { version = "1", features = ["derive"] }
|
|
walkdir = "2.3.2"
|
|
rayon = "1.7.0" |