tests/
lib.rs

1
2
3
4
5
6
7
pub const FLUX_SYSROOT: &str = "FLUX_SYSROOT";
pub const FLUX_SYSROOT_TEST: &str = "FLUX_SYSROOT_TEST";

/// Rustc flags to pass Flux when running tests
pub fn default_flags() -> Vec<String> {
    vec!["--crate-type=rlib".to_string(), "--edition=2021".to_string()]
}