23 lines
722 B
TOML
23 lines
722 B
TOML
[package]
|
|
name = "fyrox-animation"
|
|
version = "2.0.0-rc.1"
|
|
authors = ["Dmitry Stepanov <d1maxa@yandex.ru>"]
|
|
edition = "2021"
|
|
license = "MIT"
|
|
description = "Flexible Animation System"
|
|
keywords = ["animation", "game"]
|
|
categories = ["game-development", "graphics"]
|
|
include = ["/src/**/*", "/Cargo.toml", "/LICENSE", "/README.md"]
|
|
homepage = "https://fyrox.rs"
|
|
documentation = "https://docs.rs/fyrox-animation"
|
|
repository = "https://github.com/FyroxEngine/Fyrox"
|
|
readme = "README.md"
|
|
rust-version = "1.94"
|
|
|
|
[dependencies]
|
|
fyrox-core = { version = "2.0.0-rc.1", path = "../fyrox-core" }
|
|
fyrox-resource = { version = "2.0.0-rc.1", path = "../fyrox-resource" }
|
|
strum = "0.27"
|
|
strum_macros = "0.27"
|
|
fxhash = "0.2.1"
|
|
spade = "2.1.0" |