mirror of
https://github.com/SpaceManiac/SpacemanDMM.git
synced 2025-12-23 05:36:47 +00:00
24 lines
600 B
TOML
24 lines
600 B
TOML
[package]
|
|
name = "dmm-tools-cli"
|
|
description = "BYOND map rendering and analysis tools powered by SpacemanDMM"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[[bin]]
|
|
name = "dmm-tools"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.20", features = ["derive"] }
|
|
serde = "1.0.213"
|
|
serde_derive = "1.0.213"
|
|
serde_json = "1.0.132"
|
|
rayon = "1.10.0"
|
|
dreammaker = { path = "../dreammaker" }
|
|
dmm-tools = { path = "../dmm-tools", features = ["png"] }
|
|
foldhash = "0.2.0"
|
|
|
|
[build-dependencies]
|
|
chrono = "0.4.38"
|
|
git2 = { version = "0.20.2", default-features = false }
|