feat: Simple client/server implementation to control lights

This commit is contained in:
Arne Dußin 2024-08-22 22:01:48 +02:00
parent 6202f86265
commit 797ab60b8b
8 changed files with 620 additions and 0 deletions

21
Cargo.toml Normal file
View file

@ -0,0 +1,21 @@
[package]
name = "zwote_sonne"
version = "0.1.0"
edition = "2021"
default-run = "client"
[[bin]]
name = "server"
path = "src/server.rs"
[[bin]]
name = "client"
path = "src/client.rs"
[dependencies]
bincode = "1.3.3"
clap = { version = "4.5.16", features = ["derive"] }
clap_derive = "4.5.13"
rppal = "0.19.0"
serde = "1.0.208"
serde_derive = "1.0.208"