protohackers/problem_05/Cargo.toml

22 lines
393 B
TOML
Raw Normal View History

2023-05-02 12:23:47 +00:00
[package]
name = "problem_05"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "server"
path = "bin/server.rs"
2023-05-02 14:45:41 +00:00
[[bin]]
name = "client"
path = "bin/client.rs"
2023-05-02 12:23:47 +00:00
[dependencies]
2023-05-02 14:45:41 +00:00
futures = "0.3.28"
2023-05-02 16:29:37 +00:00
fancy-regex = "0.11.0"
2023-05-02 12:23:47 +00:00
tokio = { version = "1.14.0", features = ["full"] }
2023-05-02 14:45:41 +00:00
tokio-util = { version = "0.7.4", features = ["codec"] }
2023-05-02 12:23:47 +00:00
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
2023-05-03 07:42:27 +00:00
bytes = "1.4.0"