|
@@ -17,6 +17,10 @@
|
|
|
//! - **system-tray**: Enables application system tray API. Enabled by default if the `systemTray` config is defined on the `tauri.conf.json` file.
|
|
|
//! - **updater**: Enables the application auto updater. Enabled by default if the `updater` config is defined on the `tauri.conf.json` file.
|
|
|
|
|
|
+#![allow(
|
|
|
+ // Clippy bug: https://github.com/rust-lang/rust-clippy/issues/7422
|
|
|
+ clippy::nonstandard_macro_braces,
|
|
|
+)]
|
|
|
#![warn(missing_docs, rust_2018_idioms)]
|
|
|
#![cfg_attr(doc_cfg, feature(doc_cfg))]
|
|
|
|