cards/Cargo.toml

19 lines
404 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-13 21:04:42 -04:00
futures-util = { version = "0.3.30", default-features = false, features = [
"sink",
"std",
] }
tokio = { version = "1.37.0", features = ["full"] }
tokio-tungstenite = "*"
url = "2.5.0"
2024-04-26 23:12:20 -04:00
futures = "0.3.30"