Given path relative to this crate, return absolute disk path
(relative_path: &str)
| 15 | |
| 16 | /// Given path relative to this crate, return absolute disk path |
| 17 | pub fn abs_path(relative_path: &str) -> String { |
| 18 | let mut path = PathBuf::from(env!("CARGO_MANIFEST_DIR")); |
| 19 | path.push(relative_path); |
| 20 | path.to_string_lossy().to_string() |
| 21 | } |
| 22 | |
| 23 | pub fn get_r1cs_and_wasm_bytes<R: RngCore>( |
| 24 | r1cs_file_path: &str, |
no outgoing calls
no test coverage detected