Current I'm using a #[cfg(target_os = "...")] to run different functions based on OS. This is not an ideal approach. I need to spend some time in understanding how other cross-platform crates handle this and rework this to be more robust and extensible.
Current I'm using a
#[cfg(target_os = "...")]
to run different functions based on OS. This is not an ideal approach. I need to spend some time in understanding how other cross-platform crates handle this and rework this to be more robust and extensible.