Files
install-action/tools/manifest-schema/Cargo.toml
Taiki Endo 7df5094d28 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
```
2026-03-21 03:48:16 +09:00

35 lines
849 B
TOML

[package]
name = "install-action-manifest-schema"
version = "0.2.0"
edition = "2021"
rust-version = "1.79" # Align to cargo-binstall: https://crates.io/crates/cargo-binstall
license = "Apache-2.0 OR MIT"
repository = "https://github.com/taiki-e/install-action"
keywords = []
categories = []
description = """
Structured access to the install-action manifests.
"""
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[package.metadata.cargo_check_external_types]
# The following are external types that are allowed to be exposed in our public API.
allowed_external_types = [
"semver::*",
"serde_core::*",
]
[lib]
doc-scrape-examples = false
# Note: semver and serde are public dependencies.
[dependencies]
semver = { version = "1", features = ["serde"] }
serde = "1.0.165"
serde_derive = "1.0.165"
[lints]
workspace = true