mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-31 20:53:34 +00:00
* Rustlibs git commands * Review tweaks * Build Rust library * Build Rust library * I am my own build daemon * Build Rust library * Build Rust library * CI bug???????????? * You wanna work now????? * Funny tweaks * Build Rust library * For gods sake * gix breaks us, use git2 instead * Build Rust library --------- Co-authored-by: paradisess13[bot] <165046124+paradisess13[bot]@users.noreply.github.com> Co-authored-by: FunnyMan3595 (Charlie Nolan) <funnyman3595@gmail.com>
47 lines
1.5 KiB
TOML
47 lines
1.5 KiB
TOML
[package]
|
|
name = "rustlibs"
|
|
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.git", version = "0.6.14" }
|
|
eyre = "0.6.12"
|
|
rand = { version = "0.8.5", 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"
|
|
ureq = "2.12"
|
|
png = "0.17.16"
|
|
chrono = "0.4.39"
|
|
toml = "0.8.20"
|
|
dbpnoise = "0.1.2"
|
|
# redis - DO NOT CHANGE FROM 0.21.4 - also dont touch flume either please k thx. if you mess with these you make redis unstable
|
|
redis = { version = "0.21.4" }
|
|
flume = { version = "0.10" }
|
|
notify-rust = "4.11.7"
|
|
git2 = { version = "0.20.2", default-features = false }
|