1 2 3 4 5 6 7
use std::path::PathBuf; pub fn results_dir() -> PathBuf { PathBuf::from(".") .join("target") .join(env!("CARGO_PKG_NAME")) }