tcp-connect4/Cargo.toml

18 lines
293 B
TOML
Raw Normal View History

[package]
name = "connect4"
version = "0.1.0"
edition = "2021"
[dependencies]
2024-10-19 12:01:41 +02:00
bytes = "1.7.2"
2024-10-19 02:09:50 +02:00
tokio = { version = "1.38.0", features = [
"rt-multi-thread",
"macros",
"net",
"io-util",
"sync",
] }
2024-10-19 15:22:25 +02:00
tracing = "0.1.40"
tracing-appender = "0.2.3"
tracing-subscriber = "0.3.18"