feat: rewrite pi to be simple and nix based

This commit is contained in:
Jet Pham 2026-03-08 19:06:08 -07:00
parent b2c8d08bdc
commit c6e726c430
No known key found for this signature in database
28 changed files with 880 additions and 2458 deletions

15
pi/pi-service/Cargo.toml Normal file
View file

@ -0,0 +1,15 @@
[package]
name = "noisebell"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0"
axum = "0.8"
reqwest = { version = "0.12", features = ["json"] }
rppal = "0.22"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = "0.3"