1#![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::*;