protohackers/problem_06/Cargo.toml

19 lines
326 B
TOML
Raw Normal View History

2023-05-06 05:41:24 +00:00
[package]
name = "problem_06"
version = "0.1.0"
edition = "2021"
2023-05-07 06:32:07 +00:00
[[bin]]
name = "client"
path = "bin/client.rs"
2023-05-06 05:41:24 +00:00
[[bin]]
name = "server"
path = "bin/server.rs"
[dependencies]
bytes = "1"
tokio = { version = "1", features = ["full"] }
tracing = "0.1.34"
tracing-subscriber = { version = "0.3.11", features = ["env-filter"] }