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 cb31e59 commit ecb050aCopy full SHA for ecb050a
src/sys.rs
@@ -74,6 +74,10 @@ pub trait Sys: Clone {
74
/// Gets and parses the PATHEXT environment variable on Windows.
75
///
76
/// Override this to disable globally caching the parsed PATHEXT.
77
+ ///
78
+ /// Note: This will only be called when `is_windows()` returns `true`
79
+ /// and isn't conditionally compiled with `#[cfg(windows)]` so that it
80
+ /// can work in Wasm.
81
fn env_windows_path_ext(&self) -> Cow<'static, [String]> {
82
use std::sync::OnceLock;
83
0 commit comments