|
@@ -2,6 +2,8 @@
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
+//! [](https://tauri.app)
|
|
|
+//!
|
|
|
//! Tauri is a framework for building tiny, blazing fast binaries for all major desktop platforms.
|
|
|
//! Developers can integrate any front-end framework that compiles to HTML, JS and CSS for building their user interface.
|
|
|
//! The backend of the application is a rust-sourced binary with an API that the front-end can interact with.
|
|
@@ -41,6 +43,10 @@
|
|
|
//!
|
|
|
//! - **protocol-asset**: Enables the `asset` custom protocol.
|
|
|
|
|
|
+#![doc(
|
|
|
+ html_logo_url = "https://github.com/tauri-apps/tauri/raw/dev/app-icon.png",
|
|
|
+ html_favicon_url = "https://github.com/tauri-apps/tauri/raw/dev/app-icon.png"
|
|
|
+)]
|
|
|
#![warn(missing_docs, rust_2018_idioms)]
|
|
|
#![cfg_attr(doc_cfg, feature(doc_cfg))]
|
|
|
|