cards/Cargo.toml

17 lines
346 B
TOML
Raw Normal View History

2024-04-05 22:38:41 -04:00
[package]
name = "cards"
version = "0.1.0"
edition = "2021"
[dependencies]
2024-04-13 21:04:42 -04:00
futures-channel = "0.3.30"
2024-04-05 22:38:41 -04:00
rand = "0.8.5"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
2024-04-27 02:34:28 -04:00
tokio = { version = "1", features = ["full"] }
warp = "0.3"
2024-04-13 21:04:42 -04:00
url = "2.5.0"
2024-04-27 02:34:28 -04:00
pretty_env_logger = "0.5.0"
tokio-stream = "0.1.15"
futures-util = "0.3.30"