mirror of
https://github.com/taiki-e/install-action.git
synced 2026-04-08 18:05:42 +08:00
Updates the requirements on [spdx](https://github.com/EmbarkStudios/spdx) to permit the latest version. - [Release notes](https://github.com/EmbarkStudios/spdx/releases) - [Changelog](https://github.com/EmbarkStudios/spdx/blob/main/CHANGELOG.md) - [Commits](https://github.com/EmbarkStudios/spdx/compare/0.10.0...0.11.0) --- updated-dependencies: - dependency-name: spdx dependency-version: 0.11.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
37 lines
772 B
TOML
37 lines
772 B
TOML
[package]
|
|
name = "install-action-internal-codegen"
|
|
edition = "2021"
|
|
default-run = "generate-manifest"
|
|
|
|
[dependencies]
|
|
install-action-manifest-schema = { path = "../manifest-schema" }
|
|
anyhow = "1"
|
|
flate2 = "1"
|
|
fs-err = "3"
|
|
minisign-verify = "0.2"
|
|
semver = { version = "1", features = ["serde"] }
|
|
serde = "1"
|
|
serde_derive = "1"
|
|
serde_json = "1"
|
|
sha2 = "0.10"
|
|
spdx = "0.11"
|
|
tar = "0.4"
|
|
toml = { version = "0.9", default-features = false, features = ["parse", "serde"] }
|
|
# TODO: call curl command instead of using ureq?
|
|
ureq = { version = "2", features = ["json"] }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[[bin]]
|
|
bench = false
|
|
name = "generate-manifest"
|
|
path = "src/main.rs"
|
|
test = false
|
|
|
|
[[bin]]
|
|
bench = false
|
|
name = "generate-tools-markdown"
|
|
path = "src/tools-markdown.rs"
|
|
test = false
|