2021-05-07 11:24:37 +00:00
|
|
|
[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"
|
2021-05-07 11:24:37 +00:00
|
|
|
name = "veloren-common-assets"
|
|
|
|
description = "Crate for game loading assets for veloren."
|
2021-06-12 08:14:07 +00:00
|
|
|
version = "0.10.0"
|
2021-05-07 11:24:37 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
lazy_static = "1.4.0"
|
2022-05-28 21:17:28 +00:00
|
|
|
assets_manager = {version = "0.8.1", features = ["bincode", "ron", "json"]}
|
2021-11-19 13:01:08 +00:00
|
|
|
ron = { version = "0.7", default-features = false }
|
2021-05-07 11:24:37 +00:00
|
|
|
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
|
2022-05-28 21:17:28 +00:00
|
|
|
image = { version = "0.24", default-features = false, features = ["png"] }
|
2021-05-07 11:24:37 +00:00
|
|
|
tracing = "0.1"
|
2021-06-07 18:00:54 +00:00
|
|
|
|
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
|
|
|
|
2021-07-03 18:11:04 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
walkdir = "2.3.2"
|
|
|
|
|
2021-06-07 21:09:29 +00:00
|
|
|
[features]
|
2021-06-27 18:34:32 +00:00
|
|
|
hot-reloading = ["assets_manager/hot-reloading"]
|
2021-08-02 22:44:19 +00:00
|
|
|
asset_tweak = ["serde", "hot-reloading"]
|