blastmud/blastmud_game/Cargo.toml

53 lines
1.6 KiB
TOML
Raw Normal View History

2022-12-12 23:37:28 +11:00
[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]
2024-03-11 20:42:52 +11:00
base64 = "0.21.7"
2022-12-12 23:37:28 +11:00
blastmud_interfaces = { path = "../blastmud_interfaces" }
ansi = { path = "../ansi" }
ansi_markup = { path = "../ansi_markup" }
2023-10-09 21:38:12 +11:00
deadpool = "0.10.0"
2024-01-07 16:43:26 +11:00
deadpool-postgres = { version = "0.12.1", features = ["serde"] }
futures = "0.3.30"
2024-03-11 20:42:52 +11:00
log = "0.4.21"
2023-10-09 21:38:12 +11:00
nix = { version = "0.27.1", features = ["process", "signal"] }
2024-03-11 20:42:52 +11:00
ring = "0.17.8"
serde = { version = "1.0.197", features = ["derive", "serde_derive"] }
serde_yaml = "0.9.32"
2024-01-07 16:43:26 +11:00
simple_logger = "4.3.3"
2024-03-11 20:42:52 +11:00
tokio = { version = "1.36.0", features = ["signal", "net", "macros", "rt-multi-thread", "rt", "tokio-macros", "time", "sync", "io-util"] }
2024-01-07 16:43:26 +11:00
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"] }
2024-01-07 16:43:26 +11:00
tokio-stream = "0.1.14"
tokio-util = { version = "0.7.10", features = ["codec"] }
2024-03-11 20:42:52 +11:00
uuid = { version = "1.7.0", features = ["v4", "serde", "rng"] }
serde_json = "1.0.114"
2024-01-07 16:43:26 +11:00
phf = { version = "0.11.2", features = ["macros"] }
async-trait = "0.1.77"
nom = "7.1.3"
2024-03-11 20:42:52 +11:00
ouroboros = "0.18.3"
chrono = { version = "0.4.35", features = ["serde"] }
2023-10-09 21:38:12 +11:00
bcrypt = "0.15.0"
2024-01-07 16:43:26 +11:00
validator = "0.16.1"
2024-03-11 20:42:52 +11:00
itertools = "0.12.1"
2024-01-07 16:43:26 +11:00
once_cell = "1.19.0"
rand = "0.8.5"
2024-01-07 16:43:26 +11:00
async-recursion = "1.0.5"
2023-01-22 22:43:44 +11:00
rand_distr = "0.4.3"
2023-01-28 23:00:53 +11:00
humantime = "2.1.0"
2024-03-11 20:42:52 +11:00
rust_decimal = "1.34.3"
2024-01-07 16:43:26 +11:00
mockall_double = "0.3.1"
2023-06-30 23:46:38 +10:00
[dev-dependencies]
2024-01-07 16:43:26 +11:00
tokio-test = "0.4.3"
mockall = "0.12.1"
[features]
default = []
# Export data to YAML files in /tmp on startup
yamldump = []