Report native backend blockers

This commit is contained in:
Eric Wendland 2026-05-22 14:33:46 +02:00
commit d9150024dd
7 changed files with 103 additions and 13 deletions

View file

@ -913,6 +913,18 @@ pub struct StatusResponse {
pub iroh_relay_mode: String,
pub iroh_local_discovery: bool,
pub iroh: String,
#[serde(default)]
pub native_backends: Vec<NativeBackendStatus>,
}
#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize)]
pub struct NativeBackendStatus {
pub module: String,
pub current_backend: String,
pub target_crate: String,
pub target_version: String,
pub status: String,
pub blocker: String,
}
#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize)]