Files
Aurora.3/rust/bapi/Cargo.toml
903d8749f6 BAPI - mapmanip script - optional directory argument (#22980)
```
changes:
  - rscadd: "Bapi mapmanip script - optional argument to specify a map directory to run manipulations on."
```


```
echo "Example usage:"
echo "./mapmanip.ps1"
echo "./mapmanip.ps1 -Path maps/away/ships/my_map_folder"
echo "./mapmanip.ps1 -Path D:/Git/Aurora.3/maps/away/ships/my_map_folder"
```

---------

Co-authored-by: DreamySkrell <>
Co-authored-by: AuroraBuildBot <action@github.com>
2026-08-06 09:35:15 +00:00

41 lines
1.3 KiB
TOML

[package]
name = "bapi"
version = "2.0.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib"]
[dependencies]
atomic_float = "1.0.0"
bitflags = "2.5.0"
byondapi = { git = "https://github.com/spacestation13/byondapi-rs", rev = "5afdd9863a0fc1d8d1d42dd2128c9978f54e12ca" }
eyre = "0.6.12"
rand = { version = "0.8.6", features = ["small_rng"] }
scc = "2.1.1"
thread-priority = "1.1.0"
# spacemandmm, also used by strongmandmm
dmmtools = { git = "https://github.com/SpaceManiac/SpacemanDMM", rev = "6c5a751516ae0e8add4b2aa4388a1e84e96e7082", package = "dmm-tools" }
dreammaker = { git = "https://github.com/SpaceManiac/SpacemanDMM", rev = "6c5a751516ae0e8add4b2aa4388a1e84e96e7082", package = "dreammaker" }
# diffs between two strings/texts/files, used in tests
diff = "0.1"
# general utility lib for iterator operations
itertools = "0.10.5"
# fast hashmap
fxhash = "0.2.1"
# interface for serialization
serde = { version = "1.0", features = ["derive"] }
# json implementation for serde
serde_json = { version = "1.0" }
# utility function for walking through a dir recursively
walkdir = "2.5.0"
# regex
regex = "1.10.5"
# time
chrono = "0.4.39"
uuid = { version = "1.18.1", features = ["v4"] }
libc = "0.2.189"