MCPcopy Create free account
hub / github.com/FuzzAnything/PromptFuzz / get_crate_build_dir

Method get_crate_build_dir

src/deopt.rs:123–129  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

121 }
122
123 pub fn get_crate_build_dir() -> Result<PathBuf> {
124 let build_dir: PathBuf = [Deopt::get_crate_dir()?, "output", "build"]
125 .iter()
126 .collect();
127 utils::create_dir_if_nonexist(&build_dir)?;
128 Ok(build_dir)
129 }
130
131 pub fn get_crate_testsuit_dir() -> Result<PathBuf> {
132 let testsuit_dir: PathBuf = [Deopt::get_crate_dir()?, "testsuites"].iter().collect();

Callers

nothing calls this directly

Calls 1

create_dir_if_nonexistFunction · 0.85

Tested by

no test coverage detected