ioneye/server/Cargo.toml

19 lines
678 B
TOML
Raw Permalink Normal View History

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"
2023-04-09 01:35:25 +00:00
protocol = { version = "0.1.0", path = "../protocol" }
lazy_static = "1.4.0"