manifest-schema: Rename ManifestDownloadInfo::checksum to hash to reduce

manifest size

Before:
```
wc -c manifests/* | grep total
2808686 total
```

After:
```
wc -c manifests/* | grep total
2748178 total
```
This commit is contained in:
Taiki Endo
2026-03-21 03:42:14 +09:00
parent 9089010789
commit 7df5094d28
86 changed files with 15135 additions and 15131 deletions

View File

@@ -224,7 +224,7 @@ pub struct ManifestDownloadInfo {
#[serde(skip_serializing_if = "Option::is_none")]
pub url: Option<String>,
pub etag: String,
pub checksum: String,
pub hash: String,
/// Path to binaries in archive. Default to `${tool}${exe}`.
#[serde(skip_serializing_if = "Option::is_none")]
pub bin: Option<StringOrArray>,