asset-tool/Cargo.toml

31 lines
795 B
TOML
Raw Normal View History

2023-12-31 01:59:40 +00:00
[package]
name = "asset-tool"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
2024-01-06 20:38:50 +00:00
chrono = { version = "0.4.31", features = ["serde"] }
2023-12-31 01:59:40 +00:00
clap = { version = "4.4.2", features = ["derive"] }
2023-12-31 02:00:51 +00:00
flate2 = "1.0.28"
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-01-12 06:06:43 +00:00
rayon = "1.8.0"
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-01-06 20:38:50 +00:00
reqwest = { version = "0.11.23", features = ["cookies", "json"] }
2024-01-06 01:54:13 +00:00
serde = { version = "1.0.195", features = ["derive"] }
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