veloren/common/assets/Cargo.toml

26 lines
823 B
TOML
Raw Normal View History

[package]
2021-05-08 18:22:50 +00:00
authors = ["juliancoffee <lightdarkdaughter@gmail.com>", "Marcel Märtens <marcel.cochem@googlemail.com>"]
2022-01-26 13:09:00 +00:00
edition = "2021"
name = "veloren-common-assets"
description = "Crate for game loading assets for veloren."
2021-06-12 08:14:07 +00:00
version = "0.10.0"
[dependencies]
lazy_static = "1.4.0"
assets_manager = {version = "0.8.1", features = ["bincode", "ron", "json"]}
ron = { version = "0.7", default-features = false }
dot_vox = "4.0"
2022-05-10 16:12:12 +00:00
wavefront = "0.2" # TODO: Use vertex-colors branch when we have models that have them
image = { version = "0.24", default-features = false, features = ["png"] }
tracing = "0.1"
2021-06-08 11:03:15 +00:00
# asset tweak
serde = {version = "1.0", features = ["derive"], optional = true}
2021-06-07 21:09:29 +00:00
[dev-dependencies]
walkdir = "2.3.2"
2021-06-07 21:09:29 +00:00
[features]
hot-reloading = ["assets_manager/hot-reloading"]
2021-08-02 22:44:19 +00:00
asset_tweak = ["serde", "hot-reloading"]