asset-tool/Cargo.toml

29 lines
718 B
TOML
Raw Normal View History

2024-07-01 11:18:34 -07:00
workspace = { members = ["rbx_asset", "rox_compiler"] }
2023-12-30 17:59:40 -08:00
[package]
name = "asset-tool"
2024-12-13 19:55:45 -08:00
version = "0.4.8"
2023-12-30 17:59:40 -08:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
clap = { version = "4.4.2", features = ["derive"] }
2023-12-30 18:00:51 -08:00
futures = "0.3.30"
2024-01-11 01:43:22 -08:00
git2 = "0.18.1"
2023-12-30 17:59:40 -08:00
lazy-regex = "3.1.0"
2023-12-30 18:00:51 -08:00
pollster = "0.3.0"
2024-04-27 23:36:21 -07:00
rbx_asset = { path = "rbx_asset" }
2024-03-08 09:37:56 -08:00
rbx_binary = "0.7.4"
rbx_dom_weak = "2.7.0"
rbx_reflection_database = "0.2.10"
rbx_xml = "0.13.3"
2024-07-01 11:18:34 -07:00
rox_compiler = { path = "rox_compiler" }
2024-01-05 17:54:13 -08:00
serde_json = "1.0.111"
2023-12-30 18:00:51 -08:00
tokio = { version = "1.35.1", features = ["macros", "rt-multi-thread", "fs"] }
2023-12-31 09:15:40 -08:00
[profile.release]
#lto = true
strip = true
codegen-units = 1