tests/
lib.rs

1pub const FLUX_SYSROOT: &str = "FLUX_SYSROOT";
2pub const FLUX_SYSROOT_TEST: &str = "FLUX_SYSROOT_TEST";
3
4/// Rustc flags to pass Flux when running tests
5pub fn default_flags() -> Vec<String> {
6    vec!["--crate-type=rlib".to_string(), "--edition=2021".to_string()]
7}