/
githubmirror
/
tauri
Обзор
Документация
Войти
/
githubmirror
/
tauri
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
crates/tauri-plugin/src/lib.rs
24 строки
690 B
Lucas Fernandes Nogueira
fix: doc links (#15300)
29 апр 2026, 19:24
Не верифицирован
29 апр 2026, 19:24
046189b
Код
Авторство
О чём код?
// Copyright 2019-2024 Tauri Programme within The Commons Conservancy // SPDX-License-Identifier: Apache-2.0 // SPDX-License-Identifier: MIT //! Interface for building Tauri plugins. #![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" )] #![cfg_attr(docsrs, feature(doc_cfg))] #[cfg(feature = "build")] mod build; #[cfg(feature = "runtime")] mod runtime; #[cfg(feature = "build")] #[cfg_attr(docsrs, doc(cfg(feature = "build")))] pub use build::*; #[cfg(feature = "runtime")] #[cfg_attr(docsrs, doc(cfg(feature = "runtime")))] #[allow(unused)] pub use runtime::*;