We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54346fa commit c04aca3Copy full SHA for c04aca3
url/src/lib.rs
@@ -139,6 +139,9 @@ url = { version = "2", features = ["debugger_visualizer"] }
139
feature = "debugger_visualizer",
140
debugger_visualizer(natvis_file = "../../debug_metadata/url.natvis")
141
)]
142
+// We use std::os::wasi::prelude::OsStrExt, and that is conditionally feature gated
143
+// to be unstable on wasm32-wasip2. https://github.com/rust-lang/rust/issues/130323
144
+#![cfg_attr(all(target_os = "wasi", target_env = "p2"), feature(wasip2))]
145
146
pub use form_urlencoded;
147
0 commit comments