Files
fifa-blaze/crates/server/Cargo.toml
T

34 lines
835 B
TOML

[package]
name = "server"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "blaze-server"
path = "src/main.rs"
[dependencies]
blaze-proto = { path = "../blaze-proto" }
tdf = { version = "0.1", features = ["serde"] }
tokio = { version = "1", features = ["rt-multi-thread", "net", "io-util", "macros", "sync", "time", "fs"] }
tokio-util = { version = "0.7", features = ["codec"] }
futures-util = { version = "0.3", features = ["sink"] }
bytes = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
anyhow = "1"
hex = "0.4"
chrono = { version = "0.4", features = ["serde"] }
blaze-ssl-async = "0.4.0"
[[bin]]
name = "blaze-replay"
path = "src/bin/replay.rs"