tcp-connect4/Cargo.toml
2024-10-19 15:22:25 +02:00

17 lines
293 B
TOML

[package]
name = "connect4"
version = "0.1.0"
edition = "2021"
[dependencies]
bytes = "1.7.2"
tokio = { version = "1.38.0", features = [
"rt-multi-thread",
"macros",
"net",
"io-util",
"sync",
] }
tracing = "0.1.40"
tracing-appender = "0.2.3"
tracing-subscriber = "0.3.18"