diff --git a/crates/auto_update/src/lib.rs b/crates/auto_update/src/lib.rs index 6c80bc2..c81fc30 100644 --- a/crates/auto_update/src/lib.rs +++ b/crates/auto_update/src/lib.rs @@ -158,15 +158,15 @@ impl AutoUpdateStatus { } #[derive(Debug, Deserialize)] -struct GitHubRelease { - tag_name: String, - assets: Vec, +pub struct GitHubRelease { + pub tag_name: String, + pub assets: Vec, } #[derive(Debug, Deserialize)] -struct GitHubAsset { - name: String, - browser_download_url: String, +pub struct GitHubAsset { + pub name: String, + pub browser_download_url: String, } #[derive(Debug)]