2020-06-17 07:49:14 +00:00
|
|
|
[package]
|
|
|
|
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>", "Imbris <imbrisf@gmail.com>"]
|
|
|
|
edition = "2018"
|
2020-08-31 15:26:46 +00:00
|
|
|
name = "veloren-voxygen-anim"
|
2020-11-28 10:25:58 +00:00
|
|
|
version = "0.8.0"
|
2020-06-17 07:49:14 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "voxygen_anim"
|
2020-06-19 05:31:15 +00:00
|
|
|
# Uncomment to use animation hot reloading
|
|
|
|
# Note: this breaks `cargo test`
|
2020-10-18 00:04:47 +00:00
|
|
|
crate-type = ["lib", "cdylib"]
|
2020-06-17 07:49:14 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
be-dyn-lib = []
|
2020-08-31 15:26:46 +00:00
|
|
|
use-dyn-lib = ["libloading", "notify", "lazy_static", "tracing", "find_folder"]
|
2020-09-29 12:29:18 +00:00
|
|
|
simd = ["vek/platform_intrinsics"]
|
2020-06-17 07:49:14 +00:00
|
|
|
|
2020-09-29 12:29:18 +00:00
|
|
|
default = ["be-dyn-lib", "simd"]
|
2020-06-17 07:49:14 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2020-12-01 12:58:58 +00:00
|
|
|
common = {package = "veloren-common", path = "../../common"}
|
2020-08-31 15:26:46 +00:00
|
|
|
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}
|
2020-09-29 12:29:18 +00:00
|
|
|
vek = {version = "0.12.0", features = ["serde"]}
|