release_hub/lib.rs
1#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/README.md"))]
2
3// Copyright (c) 2015 - Present - The Tauri Programme within The Commons Conservancy.
4//
5// License: Apache-2.0 OR MIT/Apache-2.0
6//
7// Modified by tangxiangong (2025) for [release-hub](https://github.com/tangxiangong/release-hub).
8//
9// # Note
10//
11// This crate is forked and modified from the [tauri-apps/tauri-plugin-updater](https://github.com/tauri-apps/plugins-workspace/tree/v2/plugins/updater), which is licensed under [MIT](https://github.com/tauri-apps/plugins-workspace/blob/v2/plugins/updater/LICENSE_MIT) or [Apache 2.0](https://github.com/tauri-apps/plugins-workspace/blob/v2/plugins/updater/LICENSE_APACHE-2.0)/[MIT](https://github.com/tauri-apps/plugins-workspace/blob/v2/plugins/updater/LICENSE_MIT).
12
13mod builder;
14pub use builder::*;
15mod error;
16pub use error::*;
17pub mod github;
18#[cfg(target_os = "macos")]
19mod macos;
20#[cfg(target_os = "windows")]
21mod windows;
22pub use github::*;
23pub mod utils;
24pub use utils::*;