mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
18 lines
447 B
TOML
18 lines
447 B
TOML
[package]
|
|
authors = ["Imbris <imbrisf@gmail.com>"]
|
|
edition = "2021"
|
|
name = "veloren-voxygen-anim-dyn"
|
|
version = "0.10.0"
|
|
|
|
[lib]
|
|
# Using dylib instead of cdylib increases the size 3 -> 13 mb
|
|
# but it is needed to expose the symbols from the anim crate :(
|
|
# effect on compile time appears to be insignificant
|
|
crate-type = ["dylib"]
|
|
|
|
[features]
|
|
be-dyn-lib = ["veloren-voxygen-anim/be-dyn-lib"]
|
|
|
|
[dependencies]
|
|
veloren-voxygen-anim = { path = "../" }
|