15 lines
406 B
TOML
15 lines
406 B
TOML
|
[package]
|
||
|
name = "client"
|
||
|
version = "0.1.0"
|
||
|
edition = "2024"
|
||
|
|
||
|
[dependencies]
|
||
|
protocol = { path = "../protocol" }
|
||
|
serde = { workspace = true }
|
||
|
serde_json = { workspace = true }
|
||
|
chrono = { workspace = true }
|
||
|
tokio = { workspace = true }
|
||
|
s2n-quic = { workspace = true }
|
||
|
iced = { features = ["tokio"], git = "https://github.com/iced-rs/iced", rev = "d39022432c778a8cda455f40b9c12245db86ce45" }
|
||
|
cpal = "0.15.3"
|