Files
install-action/tools/codegen/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
772 B
TOML
Raw Normal View History

2022-12-24 21:49:18 +09:00
[package]
name = "install-action-internal-codegen"
edition = "2021"
default-run = "generate-manifest"
2022-12-24 21:49:18 +09:00
[dependencies]
install-action-manifest-schema = { path = "../manifest-schema" }
2022-12-24 21:49:18 +09:00
anyhow = "1"
flate2 = "1"
fs-err = "3"
minisign-verify = "0.2"
ring = "0.17"
semver = { version = "1", features = ["serde"] }
serde = "1"
serde_derive = "1"
2022-12-24 21:49:18 +09:00
serde_json = "1"
spdx = "0.13"
tar = "0.4"
2025-07-10 00:20:52 +09:00
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