mirror of
https://github.com/taiki-e/install-action.git
synced 2026-04-17 19:52:38 +08:00
manifest size Before: ``` wc -c manifests/* | grep total 2808686 total ``` After: ``` wc -c manifests/* | grep total 2748178 total ```
35 lines
849 B
TOML
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
|