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 5b38cb1 commit afea96eCopy full SHA for afea96e
src/lib.rs
@@ -6,14 +6,17 @@
6
//! interface.
7
8
#![no_std]
9
+#![cfg_attr(wasm_bindgen_unstable_test_coverage, feature(coverage_attribute))]
10
#![cfg_attr(
- wasm_bindgen_unstable_test_coverage,
11
- feature(coverage_attribute, allow_internal_unstable),
12
- allow(internal_features)
+ all(not(feature = "std"), target_feature = "atomics"),
+ feature(thread_local)
13
)]
14
15
- all(not(feature = "std"), target_feature = "atomics"),
16
- feature(thread_local, allow_internal_unstable),
+ any(
17
+ wasm_bindgen_unstable_test_coverage
18
+ ),
19
+ feature(allow_internal_unstable),
20
allow(internal_features)
21
22
#![allow(coherence_leak_check)]
0 commit comments