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]
|
2023-05-10 08:33:01 +00:00
|
|
|
lazy_static = { workspace = true }
|
2024-01-20 15:46:16 +00:00
|
|
|
assets_manager = { version = "0.11.1", features = ["bincode", "ron", "json"] }
|
2023-05-10 08:33:01 +00:00
|
|
|
ron = { workspace = true }
|
2023-01-22 17:00:39 +00:00
|
|
|
dot_vox = "5.1"
|
2022-05-10 16:12:12 +00:00
|
|
|
wavefront = "0.2" # TODO: Use vertex-colors branch when we have models that have them
|
2023-05-10 08:33:01 +00:00
|
|
|
image = { workspace = true }
|
|
|
|
tracing = { workspace = true }
|
2023-10-23 19:47:26 +00:00
|
|
|
hashbrown = { workspace = true }
|
2021-06-07 18:00:54 +00:00
|
|
|
|
2021-06-08 11:03:15 +00:00
|
|
|
# asset tweak
|
2023-05-10 08:33:01 +00:00
|
|
|
serde = { workspace = true, 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"]
|
2023-10-14 20:35:06 +00:00
|
|
|
asset_tweak = ["dep:serde", "hot-reloading"]
|
2024-01-20 15:46:16 +00:00
|
|
|
plugins = ["dep:serde", "assets_manager/tar"]
|