2023-04-08 22:26:14 +00:00
|
|
|
[package]
|
|
|
|
name = "server"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-04-09 00:54:44 +00:00
|
|
|
tokio = { version = "1.27", features = ["macros", "sync", "rt-multi-thread"] }
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
rmp-serde = { version = "1" }
|
|
|
|
futures = { version = "0.3", default-features = false }
|
|
|
|
hyper = { version = "0.14", features = ["server", "http1", "http2", "tcp"] }
|
|
|
|
tungstenite = { version = "0.18", default-features = false }
|
|
|
|
tokio-tungstenite = { version = "0.18" }
|
|
|
|
log = "0.4"
|
|
|
|
simple_logger = "4.1"
|
|
|
|
protocol = { version = "0.1.0", path = "../protocol" }
|