tauri_plugin/
lib.rs

1// Copyright 2019-2024 Tauri Programme within The Commons Conservancy
2// SPDX-License-Identifier: Apache-2.0
3// SPDX-License-Identifier: MIT
4
5//! Interface for building Tauri plugins.
6
7#![doc(
8  html_logo_url = "https://github.com/tauri-apps/tauri/raw/dev/.github/icon.png",
9  html_favicon_url = "https://github.com/tauri-apps/tauri/raw/dev/.github/icon.png"
10)]
11#![cfg_attr(docsrs, feature(doc_cfg))]
12
13#[cfg(feature = "build")]
14mod build;
15#[cfg(feature = "runtime")]
16mod runtime;
17
18#[cfg(feature = "build")]
19#[cfg_attr(docsrs, doc(feature = "build"))]
20pub use build::*;
21#[cfg(feature = "runtime")]
22#[cfg_attr(docsrs, doc(feature = "runtime"))]
23#[allow(unused)]
24pub use runtime::*;