2022-12-12 23:37:28 +11:00
|
|
|
[package]
|
2022-12-12 23:35:55 +11:00
|
|
|
name = "blastmud_listener"
|
2022-12-12 23:37:28 +11:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
blastmud_interfaces = { path = "../blastmud_interfaces" }
|
2024-01-07 16:43:26 +11:00
|
|
|
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 = "0.27.1"
|
2024-01-07 16:43:26 +11:00
|
|
|
once_cell = "1.19.0"
|
2022-12-12 23:37:28 +11:00
|
|
|
rand = "0.8.5"
|
2024-03-11 20:42:52 +11:00
|
|
|
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"] }
|
2022-12-12 23:35:55 +11:00
|
|
|
tokio-serde = { version = "0.8.0", features = ["cbor", "serde", "serde_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 = ["rng", "serde", "v4"] }
|
2024-01-07 16:43:26 +11:00
|
|
|
warp = "0.3.6"
|