(path: &Path, value: &Value)
| 345 | use serde_json::json; |
| 346 | |
| 347 | fn write(path: &Path, value: &Value) { |
| 348 | std::fs::write(path, serde_json::to_string_pretty(value).unwrap()).unwrap(); |
| 349 | } |
| 350 | |
| 351 | fn manifest_json(target: &Path, prefix: &str) -> Value { |
| 352 | json!({ |