()
| 7804 | } |
| 7805 | |
| 7806 | fn read_build_output_manifest() -> Result<BuildOutputManifestOut> { |
| 7807 | let path = Path::new(WASIX_BUILD_MANIFEST_PATH); |
| 7808 | let text = fs::read_to_string(path).with_context(|| format!("read {}", path.display()))?; |
| 7809 | serde_json::from_str(&text).with_context(|| format!("parse {}", path.display())) |
| 7810 | } |
| 7811 | |
| 7812 | fn read_asset_manifest() -> Result<AssetManifestOut> { |
| 7813 | read_asset_manifest_from(Path::new(GENERATED_ASSETS_DIR)) |
no outgoing calls
no test coverage detected