/
githubmirror
/
tauri
Обзор
Документация
Войти
/
githubmirror
/
tauri
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
crates/tauri-bundler/src/lib.rs
33 строки
1 KB
Fabian-Lars
chore(deps): update dependencies of tauri-cli (#15641)
06 июл 2026, 13:36
Не верифицирован
06 июл 2026, 13:36
7632efd
Код
Авторство
О чём код?
// Copyright 2016-2019 Cargo-Bundle developers <https://github.com/burtonageo/cargo-bundle> // Copyright 2019-2024 Tauri Programme within The Commons Conservancy // SPDX-License-Identifier: Apache-2.0 // SPDX-License-Identifier: MIT //! The Tauri bundler is a tool that generates installers or app bundles for executables. //! It supports auto updating through [tauri](https://docs.rs/tauri). //! //! ## Stability //! //! As it's intended to be used primarily in `tauri-cli`, the public API does not strictly adhere to SemVer. //! For example, minor releases may add new struct fields and change or remove Error enum variants. //! //! ## Platform support //! - macOS //! - DMG and App bundles //! - Linux //! - Appimage, Debian and RPM packages //! - Windows //! - MSI using WiX #![doc( html_logo_url = "https://github.com/tauri-apps/tauri/raw/dev/.github/icon.png", html_favicon_url = "https://github.com/tauri-apps/tauri/raw/dev/.github/icon.png" )] #![warn(missing_docs, rust_2018_idioms)] /// The bundle API. pub mod bundle; mod error; mod utils; pub use bundle::*; pub use error::{Error, Result};