You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: core/tauri/src/lib.rs
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,7 @@
11
11
//! The following are a list of [Cargo features](https://doc.rust-lang.org/stable/cargo/reference/manifest.html#the-features-section) that can be enabled or disabled:
12
12
//!
13
13
//! - **wry** *(enabled by default)*: Enables the [wry](https://github.com/tauri-apps/wry) runtime. Only disable it if you want a custom runtime.
14
+
//! - **test**: Enables the [`test`] module exposing unit test helpers.
14
15
//! - **dox**: Internal feature to generate Rust documentation without linking on Linux.
15
16
//! - **objc-exception**: Wrap each msg_send! in a @try/@catch and panics if an exception is caught, preventing Objective-C from unwinding into Rust.
16
17
//! - **linux-protocol-headers**: Enables headers support for custom protocol requests on Linux. Requires webkit2gtk v2.36 or above.
@@ -839,8 +840,8 @@ pub(crate) mod sealed {
839
840
}
840
841
}
841
842
842
-
/// Utilities for unit testing on Tauri applications.
0 commit comments