- Add VideoCapture with CameraX for MP4 recording via POST /record - Add GET /captures to list all media with sidecar status - Add GET /sidecar/<filename> for JSON sidecar downloads - Add GET /video/last and /video/<filename> endpoints - New Rust TUI dashboard for WiFi auto-sync to ~/timi/capture - Fix duplicate tvQr id in activity_main.xml - Update api_spec.yaml, AGENTS.md, scicam_api_test.sh
23 lines
446 B
TOML
23 lines
446 B
TOML
[package]
|
|
name = "scicam-dashboard"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1", features = ["full"] }
|
|
reqwest = { version = "0.12", features = ["json", "stream"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
crossterm = "0.28"
|
|
ratatui = "0.29"
|
|
tokio-util = "0.7"
|
|
anyhow = "1"
|
|
log = "0.4"
|
|
simplelog = "0.12"
|
|
dirs = "5"
|
|
toml = "0.8"
|
|
chrono = "0.4"
|
|
futures = "0.3"
|
|
bytes = "1"
|
|
urlencoding = "2"
|