2024-04-17 12:21:53 +00:00
|
|
|
|
|
|
|
#[cfg(target_family="windows")]
|
|
|
|
mod constants {
|
|
|
|
pub const PATH_VAR_SEP: &'static str = ";";
|
|
|
|
pub const EXEC_EXT: &'static str = "exe";
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(target_family="unix")]
|
|
|
|
mod constants {
|
|
|
|
pub const PATH_VAR_SEP: &'static str = ":";
|
|
|
|
pub const EXEC_EXT: &'static str = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-04-15 14:47:43 +00:00
|
|
|
pub use constants::*;
|