-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Labels
S-actionableSomeone could pick this issue up and work on it right nowSomeone could pick this issue up and work on it right now
Description
It seems the following is currently not supported:
#[cfg_attr(target_os = "windows", path = "os_windows.rs)]
mod os;I've had to do the following:
#[cfg(target_os = "windows")]
mod os_windows;
#[cfg(target_os = "windows")]
use os_windows as os;ChaseElectr, rpjohnst, crumblingstatue, tmcguire, wpbrown and 3 more
Metadata
Metadata
Assignees
Labels
S-actionableSomeone could pick this issue up and work on it right nowSomeone could pick this issue up and work on it right now