1234567891011121314151617181920212223242526 |
- // Copyright 2019-2024 Tauri Programme within The Commons Conservancy
- // SPDX-License-Identifier: Apache-2.0
- // SPDX-License-Identifier: MIT
- //! [](https://tauri.app)
- //!
- //! 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(feature = "build"))]
- pub use build::*;
- #[cfg(feature = "runtime")]
- #[cfg_attr(docsrs, doc(feature = "runtime"))]
- #[allow(unused)]
- pub use runtime::*;
|