mirror of
https://github.com/taiki-e/install-action.git
synced 2025-12-27 01:54:13 -05:00
```
Updating crates.io index
Locking 0 packages to latest compatible versions
Removing block-buffer v0.10.4
Removing cpufeatures v0.2.17
Removing crypto-common v0.1.7
Removing digest v0.10.7
Removing generic-array v0.14.7
Removing sha2 v0.10.9
Removing typenum v1.19.0
Removing version_check v0.9.5
```
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"
|
|
ring = "0.17"
|
|
semver = { version = "1", features = ["serde"] }
|
|
serde = "1"
|
|
serde_derive = "1"
|
|
serde_json = "1"
|
|
spdx = "0.13"
|
|
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
|