blastmud/blastmud_game/Cargo.toml

53 lines
1.6 KiB
TOML

[package]
name = "blastmud_game"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
base64 = "0.21.5"
blastmud_interfaces = { path = "../blastmud_interfaces" }
ansi = { path = "../ansi" }
ansi_markup = { path = "../ansi_markup" }
deadpool = "0.10.0"
deadpool-postgres = { version = "0.12.1", features = ["serde"] }
futures = "0.3.30"
log = "0.4.20"
nix = { version = "0.27.1", features = ["process", "signal"] }
ring = "0.17.7"
serde = { version = "1.0.195", features = ["derive", "serde_derive"] }
serde_yaml = "0.9.30"
simple_logger = "4.3.3"
tokio = { version = "1.35.1", features = ["signal", "net", "macros", "rt-multi-thread", "rt", "tokio-macros", "time", "sync", "io-util"] }
tokio-postgres = { version = "0.7.10", features = ["with-uuid-1", "with-serde_json-1"] }
tokio-serde = { version = "0.8.0", features = ["serde", "serde_cbor", "cbor"] }
tokio-stream = "0.1.14"
tokio-util = { version = "0.7.10", features = ["codec"] }
uuid = { version = "1.6.1", features = ["v4", "serde", "rng"] }
serde_json = "1.0.111"
phf = { version = "0.11.2", features = ["macros"] }
async-trait = "0.1.77"
nom = "7.1.3"
ouroboros = "0.18.2"
chrono = { version = "0.4.31", features = ["serde"] }
bcrypt = "0.15.0"
validator = "0.16.1"
itertools = "0.12.0"
once_cell = "1.19.0"
rand = "0.8.5"
async-recursion = "1.0.5"
rand_distr = "0.4.3"
humantime = "2.1.0"
rust_decimal = "1.33.1"
mockall_double = "0.3.1"
[dev-dependencies]
tokio-test = "0.4.3"
mockall = "0.12.1"
[features]
default = []
# Export data to YAML files in /tmp on startup
yamldump = []