feat: base project structure

This commit is contained in:
Ahmet Kaan Gümüş 2025-05-14 23:43:35 +03:00
parent e2043f1009
commit 1567a9c32a
15 changed files with 5568 additions and 1 deletions

14
client/Cargo.toml Normal file
View file

@ -0,0 +1,14 @@
[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"