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]
|
2022-12-18 02:30:30 +11:00
|
|
|
base64 = "0.20.0"
|
2022-12-12 23:37:28 +11:00
|
|
|
blastmud_interfaces = { path = "../blastmud_interfaces" }
|
2022-12-28 20:00:55 +11:00
|
|
|
ansi = { path = "../ansi" }
|
2022-12-18 23:44:04 +11:00
|
|
|
deadpool = "0.9.5"
|
2022-12-14 21:34:01 +11:00
|
|
|
deadpool-postgres = { version = "0.10.3", features = ["serde"] }
|
|
|
|
futures = "0.3.25"
|
|
|
|
log = "0.4.17"
|
2022-12-16 20:48:24 +11:00
|
|
|
nix = "0.26.1"
|
2022-12-18 02:30:30 +11:00
|
|
|
ring = "0.16.20"
|
2022-12-14 21:34:01 +11:00
|
|
|
serde = { version = "1.0.150", features = ["derive", "serde_derive"] }
|
|
|
|
serde_yaml = "0.9.14"
|
|
|
|
simple_logger = "4.0.0"
|
|
|
|
tokio = { version = "1.23.0", features = ["signal", "net", "macros", "rt-multi-thread", "rt", "tokio-macros", "time", "sync", "io-util"] }
|
2022-12-24 21:16:23 +11:00
|
|
|
tokio-postgres = { version = "0.7.7", features = ["with-uuid-1", "with-serde_json-1"] }
|
2022-12-14 21:34:01 +11:00
|
|
|
tokio-serde = { version = "0.8.0", features = ["serde", "serde_cbor", "cbor"] }
|
2022-12-14 23:48:00 +11:00
|
|
|
tokio-stream = "0.1.11"
|
2022-12-14 21:34:01 +11:00
|
|
|
tokio-util = { version = "0.7.4", features = ["codec"] }
|
2022-12-14 23:48:00 +11:00
|
|
|
uuid = { version = "1.2.2", features = ["v4", "serde", "rng"] }
|
2022-12-24 21:16:23 +11:00
|
|
|
serde_json = "1.0.91"
|
|
|
|
phf = { version = "0.11.1", features = ["macros"] }
|
|
|
|
async-trait = "0.1.60"
|
|
|
|
nom = "7.1.1"
|
2022-12-25 00:25:52 +11:00
|
|
|
ouroboros = "0.15.5"
|
2022-12-26 01:30:59 +11:00
|
|
|
chrono = { version = "0.4.23", features = ["serde"] }
|
|
|
|
bcrypt = "0.13.0"
|
2022-12-27 16:08:27 +11:00
|
|
|
validator = "0.16.0"
|
2022-12-27 20:16:35 +11:00
|
|
|
itertools = "0.10.5"
|
2022-12-27 23:35:27 +11:00
|
|
|
once_cell = "1.16.0"
|
2023-01-07 23:06:02 +11:00
|
|
|
rand = "0.8.5"
|
2023-01-15 17:30:23 +11:00
|
|
|
async-recursion = "1.0.0"
|
2023-01-22 22:43:44 +11:00
|
|
|
rand_distr = "0.4.3"
|