asset-tool/Cargo.toml

29 lines
718 B
TOML
Raw Permalink Normal View History

2024-07-01 18:18:34 +00:00
workspace = { members = ["rbx_asset", "rox_compiler"] }
2023-12-31 01:59:40 +00:00
[package]
name = "asset-tool"
version = "0.4.7"
2023-12-31 01:59:40 +00: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-31 02:00:51 +00:00
futures = "0.3.30"
2024-01-11 09:43:22 +00:00
git2 = "0.18.1"
2023-12-31 01:59:40 +00:00
lazy-regex = "3.1.0"
2023-12-31 02:00:51 +00:00
pollster = "0.3.0"
2024-04-28 06:36:21 +00:00
rbx_asset = { path = "rbx_asset" }
2024-03-08 17:37:56 +00: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 18:18:34 +00:00
rox_compiler = { path = "rox_compiler" }
2024-01-06 01:54:13 +00:00
serde_json = "1.0.111"
2023-12-31 02:00:51 +00:00
tokio = { version = "1.35.1", features = ["macros", "rt-multi-thread", "fs"] }
2023-12-31 17:15:40 +00:00
[profile.release]
#lto = true
strip = true
codegen-units = 1