UI progress

This commit is contained in:
sam
2026-05-10 23:56:54 +02:00
parent 2679f0b063
commit 19f53559fd
21 changed files with 1138 additions and 551 deletions

View File

@@ -3,11 +3,15 @@ name = "client_node"
version = "0.1.0"
edition = "2024"
[features]
default = ["webrtc"]
webrtc = ["dep:webrtc-audio-processing", "dep:webrtc-audio-processing-config"]
[dependencies]
anyhow = "1.0.102"
core_protocol = { version = "0.1.0", path = "../core_protocol" }
cpal = "0.17.3"
eframe = "0.34.1"
eframe = { version = "0.34.1", features = ["glow", "default_fonts", "wayland", "x11"] }
egui = "0.34.1"
futures = "0.3.32"
hound = "3.5.1"
@@ -18,5 +22,5 @@ tokio-serde = { version = "0.9.0", features = ["bincode"] }
tokio-util = { version = "0.7.18", features = ["codec"] }
tracing = "0.1.44"
tracing-subscriber = "0.3.23"
webrtc-audio-processing = { version = "2.0.4", features = ["bundled"] }
webrtc-audio-processing-config = "2.0.4"
webrtc-audio-processing = { version = "2.0.4", features = ["bundled"], optional = true }
webrtc-audio-processing-config = { version = "2.0.4", optional = true }