protohackers/problem_05/Cargo.toml
2023-05-02 17:09:45 +02:00

20 lines
370 B
TOML

[package]
name = "problem_05"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "server"
path = "bin/server.rs"
[[bin]]
name = "client"
path = "bin/client.rs"
[dependencies]
futures = "0.3.28"
regex = "1.8.1"
tokio = { version = "1.14.0", features = ["full"] }
tokio-util = { version = "0.7.4", features = ["codec"] }
tracing = "0.1.37"
tracing-subscriber = "0.3.17"