(path: &Path, value: &Value)
| 383 | use serde_json::json; |
| 384 | |
| 385 | fn write(path: &Path, value: &Value) { |
| 386 | std::fs::write(path, serde_json::to_string_pretty(value).unwrap()).unwrap(); |
| 387 | } |
| 388 | |
| 389 | fn manifest_json(target: &Path, prefix: &str) -> Value { |
| 390 | json!({ |