1 2 3 4 5 6 7 8 9 10 11
#[cfg(all(unix, not(target_os = "macos")))] fn main() { // add unix dependencies below // println!("cargo:rustc-flags=-l readline"); } #[cfg(target_os = "macos")] fn main() { // add macos dependencies below // println!("cargo:rustc-flags=-l edit"); }