torttube/sidecar/Cargo.toml
Kayos 5f2145e5fe v1.0.1 — pv.youtube service preflight + sidecar runtime revert
Two fixes after a 2026-05-23 regression where a Kodi restart left
plugin.video.youtube's service.py un-started, breaking every delegated
play with a silent "Service IPC - Monitor has not started" error.

- Addon: probe pv.youtube's localhost httpd (50152/50153) before
  delegating. If nothing is listening, show a "YouTube service down —
  restart Kodi" notification and fall back to our DASH / progressive
  paths instead of letting setResolvedUrl fail silently.

- Sidecar: revert tokio runtime from current_thread back to
  multi_thread with 2 worker threads so subscriptions_feed's per-channel
  tokio::spawn fan-out runs in parallel. The current_thread RSS savings
  weren't worth the behavioral change.
2026-05-23 13:56:04 -07:00

15 lines
308 B
TOML

[workspace]
resolver = "2"
members = ["crates/torttube-sidecar"]
[workspace.package]
version = "1.0.1"
edition = "2021"
license = "GPL-3.0-or-later"
authors = ["Cobb <cobb@sulkta.com>"]
repository = "http://192.168.0.5:3001/Sulkta-Coop/torttube"
[profile.release]
lto = true
codegen-units = 1
strip = true