mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-27 01:32:09 +00:00
changes: - rscadd: "BAPI - mapmanip multiz support." needed for the current map freeze before, multiz dmm maps were not handled at all, always assuming there's one zlevel (reading and writing) now with this PR, multiz dmm maps will be handled correctly, both submaps and the maps they are inserted into --------- Co-authored-by: DreamySkrell <> Co-authored-by: AuroraBuildBot <action@github.com>
37 lines
1.0 KiB
TOML
37 lines
1.0 KiB
TOML
[package]
|
|
name = "bapi"
|
|
version = "1.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]
|
|
|
|
# byondapi
|
|
byondapi = { git = "https://github.com/spacestation13/byondapi-rs", rev = "5afdd9863a0fc1d8d1d42dd2128c9978f54e12ca" }
|
|
# spacemandmm, also used by strongmandmm
|
|
dmmtools = { git = "https://github.com/SpaceManiac/SpacemanDMM", rev = "6c5a751516ae0e8add4b2aa4388a1e84e96e7082", package = "dmm-tools" }
|
|
# error-handling
|
|
eyre = "0.6.12"
|
|
# 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"
|
|
# generating random numbers
|
|
rand = "^0.8"
|
|
# 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"
|