We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8ab5fb commit b5da50fCopy full SHA for b5da50f
spawns/src/lib.rs
@@ -50,6 +50,15 @@
50
//! Noted that, all those compatibility features, injections should only active on tests and
51
//! binaries. Otherwise, they will be propagated to dependents with unnecessary dependencies.
52
//!
53
+//! For macOS users, you may have to put below to your `Cargo.toml` for above to function.
54
+//!
55
+//! ```toml
56
+//! [profile.dev]
57
+//! lto = "thin"
58
+//! ```
59
60
+//! See <https://github.com/dtolnay/linkme/issues/61> for sure.
61
62
//! ## Dealing with multiple global executors
63
//! Global executor cloud spawn task with no help from thread context. But this exposes us an
64
//! dilemma to us, which one to use if there are multiple global executors present ? By default,
0 commit comments