.
Some checks failed
Rust / build (ubuntu-latest, stable) (push) Failing after 9m11s
Rust / build (ubuntu-latest, stable) (pull_request) Failing after 2m2s

This commit is contained in:
2026-02-19 15:23:38 +07:00
parent fa7795171e
commit f0e498d9e7

View File

@@ -158,15 +158,15 @@ impl AutoUpdateStatus {
}
#[derive(Debug, Deserialize)]
struct GitHubRelease {
tag_name: String,
assets: Vec<GitHubAsset>,
pub struct GitHubRelease {
pub tag_name: String,
pub assets: Vec<GitHubAsset>,
}
#[derive(Debug, Deserialize)]
struct GitHubAsset {
name: String,
browser_download_url: String,
pub struct GitHubAsset {
pub name: String,
pub browser_download_url: String,
}
#[derive(Debug)]