(root: &Path)
| 645 | } |
| 646 | |
| 647 | fn load_trace(root: &Path) -> Result<Trace> { |
| 648 | let path = root.join("trace.json"); |
| 649 | let bytes = fs::read(&path).with_context(|| format!("reading {}", path.display()))?; |
| 650 | let r: Trace = serde_json::from_slice(&bytes) |
| 651 | .with_context(|| format!("parsing {}", path.display()))?; |
| 652 | Ok(r) |
| 653 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…