lib.rs 777 B

1234567891011121314151617181920212223242526
  1. // Copyright 2019-2024 Tauri Programme within The Commons Conservancy
  2. // SPDX-License-Identifier: Apache-2.0
  3. // SPDX-License-Identifier: MIT
  4. //! [![](https://github.com/tauri-apps/tauri/raw/dev/.github/splash.png)](https://tauri.app)
  5. //!
  6. //! Interface for building Tauri plugins.
  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. #[cfg(feature = "build")]
  13. mod build;
  14. #[cfg(feature = "runtime")]
  15. mod runtime;
  16. #[cfg(feature = "build")]
  17. #[cfg_attr(docsrs, doc(feature = "build"))]
  18. pub use build::*;
  19. #[cfg(feature = "runtime")]
  20. #[cfg_attr(docsrs, doc(feature = "runtime"))]
  21. #[allow(unused)]
  22. pub use runtime::*;