2020-09-16 18:04:18 +02:00
|
|
|
[package]
|
|
|
|
name = "server"
|
2020-11-14 16:04:35 +01:00
|
|
|
version = "0.2.0"
|
2020-09-16 18:04:18 +02:00
|
|
|
authors = ["Jan Trefil <8711792+htrefil@users.noreply.github.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2021-01-01 17:37:00 +01:00
|
|
|
tokio = { version = "1.0.1", features = ["macros", "time", "fs", "net", "signal", "rt-multi-thread", "sync"] }
|
2020-10-23 19:47:57 +02:00
|
|
|
input = { path = "../input" }
|
|
|
|
net = { path = "../net" }
|
|
|
|
serde = { version = "1.0.117", features = ["derive"] }
|
|
|
|
toml = "0.5.7"
|
|
|
|
structopt = "0.3.20"
|
|
|
|
log = "0.4.11"
|
|
|
|
env_logger = "0.8.1"
|
2021-01-01 17:37:00 +01:00
|
|
|
tokio-native-tls = "0.3.0"
|
2020-10-29 17:50:55 +01:00
|
|
|
anyhow = "1.0.33"
|