mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
a6abda391f
Adjust female orc headsize add inline_tweak crate to voxygen and anim format cargo.toml alphabetically
28 lines
861 B
TOML
28 lines
861 B
TOML
[package]
|
|
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>", "Imbris <imbrisf@gmail.com>"]
|
|
edition = "2018"
|
|
name = "veloren-voxygen-anim"
|
|
version = "0.7.0"
|
|
|
|
[lib]
|
|
name = "voxygen_anim"
|
|
# Uncomment to use animation hot reloading
|
|
# Note: this breaks `cargo test`
|
|
# crate-type = ["lib", "cdylib"]
|
|
|
|
[features]
|
|
be-dyn-lib = []
|
|
use-dyn-lib = ["libloading", "notify", "lazy_static", "tracing", "find_folder"]
|
|
|
|
default = ["be-dyn-lib"]
|
|
|
|
[dependencies]
|
|
common = {package = "veloren-common", path = "../../../common"}
|
|
find_folder = {version = "0.3.0", optional = true}
|
|
inline_tweak = "1.0.2"
|
|
lazy_static = {version = "1.4.0", optional = true}
|
|
libloading = {version = "0.6.2", optional = true}
|
|
notify = {version = "5.0.0-pre.2", optional = true}
|
|
tracing = {version = "0.1", optional = true}
|
|
vek = {version = "0.12.0", features = ["platform_intrinsics", "serde"]}
|