2019-08-15 17:16:59 +00:00
|
|
|
{
|
2019-08-16 00:18:21 +00:00
|
|
|
"name": "setup-rust-action",
|
2019-08-15 17:16:59 +00:00
|
|
|
"version": "0.0.0",
|
|
|
|
"private": true,
|
2019-08-16 00:18:21 +00:00
|
|
|
"description": "Set up a specific Rust toolchain in your Github Actions workflows",
|
2019-08-15 17:16:59 +00:00
|
|
|
"main": "lib/main.js",
|
|
|
|
"scripts": {
|
2020-08-11 22:47:58 +00:00
|
|
|
"build": "ncc build src/main.ts --minify"
|
2019-08-15 17:16:59 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2019-08-16 00:18:21 +00:00
|
|
|
"url": "git+https://github.com/hecrj/setup-rust-action.git"
|
2019-08-15 17:16:59 +00:00
|
|
|
},
|
|
|
|
"keywords": [
|
2019-08-16 00:18:21 +00:00
|
|
|
"github",
|
2019-08-15 17:16:59 +00:00
|
|
|
"actions",
|
2019-08-16 00:18:21 +00:00
|
|
|
"rust",
|
2019-08-15 17:16:59 +00:00
|
|
|
"setup"
|
|
|
|
],
|
2019-08-16 00:18:21 +00:00
|
|
|
"author": "Héctor Ramón",
|
2019-08-15 17:16:59 +00:00
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2020-10-01 17:17:21 +00:00
|
|
|
"@actions/core": "^1.2.6",
|
2020-04-29 18:24:12 +00:00
|
|
|
"@actions/exec": "^1.0.4",
|
2022-11-01 17:47:51 +00:00
|
|
|
"@actions/github": "^5.1.1",
|
2020-04-29 18:24:12 +00:00
|
|
|
"@actions/io": "^1.0.0",
|
2022-11-01 17:47:51 +00:00
|
|
|
"@actions/tool-cache": "^2.0.1",
|
|
|
|
"semver": "^7.3.8"
|
2019-08-15 17:16:59 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-11-01 17:47:51 +00:00
|
|
|
"@types/node": "^18.11.9",
|
|
|
|
"@types/semver": "^7.3.13",
|
|
|
|
"@zeit/ncc": "^0.22.3",
|
|
|
|
"typescript": "^4.8.4"
|
2019-08-15 17:16:59 +00:00
|
|
|
}
|
|
|
|
}
|