mirror of
https://github.com/htrefil/rkvm.git
synced 2024-11-17 07:47:45 +01:00
18 lines
556 B
TOML
18 lines
556 B
TOML
[package]
|
|
name = "server"
|
|
version = "0.1.0"
|
|
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]
|
|
tokio = { version = "0.3.2", features = ["macros", "time", "fs", "net", "signal", "rt-multi-thread"] }
|
|
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"
|
|
tokio-native-tls = "0.2.0"
|