{"id":5806557,"name":"taiki-e/upload-rust-binary-action","ecosystem":"actions","description":"GitHub Action for building and uploading Rust binary to GitHub Releases","homepage":"","licenses":"apache-2.0","normalized_licenses":["Apache-2.0"],"repository_url":"https://github.com/taiki-e/upload-rust-binary-action","keywords_array":["github-actions","rust"],"namespace":"taiki-e","versions_count":44,"first_release_published_at":"2021-02-04T10:33:04.000Z","latest_release_published_at":"2026-02-11T09:49:50.000Z","latest_release_number":"v1.28.0","last_synced_at":"2026-03-11T11:02:27.827Z","created_at":"2023-01-04T16:17:03.382Z","updated_at":"2026-03-11T11:03:57.588Z","registry_url":"https://github.com/taiki-e/upload-rust-binary-action","install_command":null,"documentation_url":null,"metadata":{"name":"Build and upload Rust binary to GitHub Releases","description":"GitHub Action for building and uploading Rust binary to GitHub Releases","inputs":{"bin":{"description":"Binary names (non-extension portion of filename) to build and upload (whitespace or comma separated list). Note that glob pattern is not supported yet.\n","required":true},"archive":{"description":"Archive name (non-extension portion of filename) to be uploaded (variables `$bin`, `$target`, `$tag`, and any string)","required":false,"default":"$bin-$target"},"target":{"description":"Target name, default is host triple","required":false},"features":{"description":"Cargo build features to enable (space or comma separated list)","required":false},"package":{"description":"Package name to build","required":false},"locked":{"description":"Whether to build with `--locked` flag","required":false,"default":"false"},"no-default-features":{"description":"Whether to disable cargo build default features","required":false},"no_default_features":{"description":"Alias for 'no-default-features'","required":false,"default":"false"},"manifest-path":{"description":"Override cargo manifest path","required":false},"manifest_path":{"description":"Alias for 'manifest-path'","required":false},"tar":{"description":"On which platform to distribute the `.tar.gz` file (all, unix, windows, or none)","required":false,"default":"unix"},"tar-xz":{"description":"On which platform to distribute the `.tar.xz` file (all, unix, windows, or none)","required":false,"default":"none"},"zip":{"description":"On which platform to distribute the `.zip` file (all, unix, windows, or none)","required":false,"default":"windows"},"include":{"description":"Additional files to be included to the archive (whitespace or comma separated list). Note that glob pattern is not supported yet.\n","required":false},"asset":{"description":"Additional files to be uploaded separately (whitespace or comma separated list). Note that glob pattern is not supported yet.\n","required":false},"leading-dir":{"description":"Whether to create the leading directory in the archive or not","required":false},"leading_dir":{"description":"Alias for 'leading-dir'","required":false,"default":"false"},"bin-leading-dir":{"description":"Create extra leading directory(s) for binary file(s) specified by 'bin' option","required":false},"build-tool":{"description":"Tool to build binaries (cargo, cross, or cargo-zigbuild)","required":false},"build_tool":{"description":"Alias for 'build-tool'","required":false},"checksum":{"description":"Algorithms to be used for checksum (b2, sha256, sha512, sha1, or md5) (whitespace or comma separated list)","required":false},"token":{"description":"GitHub token for creating GitHub Releases.\nIf not set this option, the GITHUB_TOKEN environment variable will be used.\n","required":false},"ref":{"description":"Fully-formed tag ref for this release.\nIf not set this option, the GITHUB_REF environment variable (automatically set by GitHub Actions) will be used.\n","required":false},"profile":{"description":"The cargo profile to build. This defaults to the release profile.","required":false,"default":"release"},"dry-run":{"description":"Build and compress binaries, but do not upload them.\nNote that some errors are downgraded to warnings in this mode.\n","required":false},"dry-run-intended":{"description":"Suppress informational warnings for `dru-run` keeping the rest\n","required":false,"default":"false"},"dry_run":{"description":"Alias for 'dry-run'","required":false,"default":"false"},"codesign":{"description":"Sign build products using `codesign` on macOS","required":false},"codesign-prefix":{"description":"Prefix for the `codesign` identifier on macOS","required":false},"codesign_prefix":{"description":"Alias for 'codesign-prefix'","required":false},"codesign-options":{"description":"Specifies a set of option flags to be embedded in the code signature on macOS. See the codesign manpage for details.","required":false},"codesign_options":{"description":"Alias for 'codesign-options'","required":false}},"outputs":{"archive":{"description":"Archive base name","value":"${{ steps.upload-rust-binary-action.outputs.archive }}"},"zip":{"description":".zip archive file name","value":"${{ steps.upload-rust-binary-action.outputs.zip }}"},"tar":{"description":".tar.gz archive file name","value":"${{ steps.upload-rust-binary-action.outputs.tar }}"},"tar-xz":{"description":".tar.xz archive file name","value":"${{ steps.upload-rust-binary-action.outputs.tar-xz }}"},"b2":{"description":"BLAKE2 checksum file name","value":"${{ steps.upload-rust-binary-action.outputs.b2 }}"},"sha256":{"description":"SHA256 checksum file name","value":"${{ steps.upload-rust-binary-action.outputs.sha256 }}"},"sha512":{"description":"SHA512 checksum file name","value":"${{ steps.upload-rust-binary-action.outputs.sha512 }}"},"sha1":{"description":"SHA1 checksum file name","value":"${{ steps.upload-rust-binary-action.outputs.sha1 }}"},"md5":{"description":"MD5 checksum file name","value":"${{ steps.upload-rust-binary-action.outputs.md5 }}"}},"runs":{"using":"composite","steps":[{"id":"upload-rust-binary-action","run":"bash --noprofile --norc \"${GITHUB_ACTION_PATH:?}/main.sh\"","shell":"bash","env":{"INPUT_BIN":"${{ inputs.bin }}","INPUT_ARCHIVE":"${{ inputs.archive }}","INPUT_TARGET":"${{ inputs.target }}","INPUT_FEATURES":"${{ inputs.features }}","INPUT_PACKAGE":"${{ inputs.package }}","INPUT_LOCKED":"${{ inputs.locked }}","INPUT_NO_DEFAULT_FEATURES":"${{ inputs.no-default-features || inputs.no_default_features }}","INPUT_MANIFEST_PATH":"${{ inputs.manifest-path || inputs.manifest_path }}","INPUT_TAR":"${{ inputs.tar }}","INPUT_TAR_XZ":"${{ inputs.tar-xz }}","INPUT_ZIP":"${{ inputs.zip }}","INPUT_INCLUDE":"${{ inputs.include }}","INPUT_ASSET":"${{ inputs.asset }}","INPUT_LEADING_DIR":"${{ inputs.leading-dir || inputs.leading_dir }}","INPUT_BIN_LEADING_DIR":"${{ inputs.bin-leading-dir }}","INPUT_BUILD_TOOL":"${{ inputs.build-tool || inputs.build_tool }}","INPUT_CHECKSUM":"${{ inputs.checksum }}","INPUT_TOKEN":"${{ inputs.token }}","INPUT_REF":"${{ inputs.ref }}","INPUT_PROFILE":"${{ inputs.profile }}","INPUT_DRY_RUN":"${{ inputs.dry-run || inputs.dry_run }}","INPUT_DRY_RUN_INTENDED":"${{ inputs.dry-run-intended }}","INPUT_CODESIGN":"${{ inputs.codesign }}","INPUT_CODESIGN_PREFIX":"${{ inputs.codesign-prefix || inputs.codesign_prefix }}","INPUT_CODESIGN_OPTIONS":"${{ inputs.codesign-options || inputs.codesign_options }}"}}]},"default_branch":"main","path":null},"repo_metadata":{"id":38269070,"uuid":"335671865","full_name":"taiki-e/upload-rust-binary-action","owner":"taiki-e","description":"GitHub Action for building and uploading Rust binary to GitHub Releases.","archived":false,"fork":false,"pushed_at":"2026-03-03T12:38:02.000Z","size":296,"stargazers_count":315,"open_issues_count":24,"forks_count":25,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-03-03T16:17:29.594Z","etag":null,"topics":["github-actions","rust"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/taiki-e.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE-APACHE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":"taiki-e"}},"created_at":"2021-02-03T15:39:17.000Z","updated_at":"2026-03-03T12:38:06.000Z","dependencies_parsed_at":"2023-09-28T18:22:53.330Z","dependency_job_id":"995dd926-d961-4f0b-89f4-f2d81069a79f","html_url":"https://github.com/taiki-e/upload-rust-binary-action","commit_stats":{"total_commits":253,"total_committers":9,"mean_commits":28.11111111111111,"dds":0.03952569169960474,"last_synced_commit":"cf4d1ef5e56275d7c7600d05e7032bd58bfbeefc"},"previous_names":[],"tags_count":44,"template":false,"template_full_name":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/taiki-e","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/sbom","scorecard":{"id":865849,"data":{"date":"2025-08-11","repo":{"name":"github.com/taiki-e/upload-rust-binary-action","commit":"dac345e9aa56d46d1d4d817a6ecea9ab58de0e83"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":6.4,"checks":[{"name":"Binary-Artifacts","score":10,"reason":"no binaries found in the repo","details":null,"documentation":{"short":"Determines if the project has generated executable (binary) artifacts in the source repository.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#binary-artifacts"}},{"name":"Packaging","score":-1,"reason":"packaging workflow not detected","details":["Warn: no GitHub/GitLab publishing workflow detected."],"documentation":{"short":"Determines if the project is published as a package that others can easily download, install, easily update, and uninstall.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#packaging"}},{"name":"Code-Review","score":1,"reason":"Found 3/30 approved changesets -- score normalized to 1","details":null,"documentation":{"short":"Determines if the project requires human code review before pull requests (aka merge requests) are merged.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#code-review"}},{"name":"Dangerous-Workflow","score":10,"reason":"no dangerous workflow patterns detected","details":null,"documentation":{"short":"Determines if the project's GitHub Action workflows avoid dangerous patterns.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#dangerous-workflow"}},{"name":"Maintained","score":8,"reason":"5 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 8","details":null,"documentation":{"short":"Determines if the project is \"actively maintained\".","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#maintained"}},{"name":"Token-Permissions","score":10,"reason":"GitHub workflow tokens follow principle of least privilege","details":["Info: jobLevel 'contents' permission set to 'read': .github/workflows/ci.yml:37","Info: jobLevel 'repository-projects' permission set to 'read': .github/workflows/ci.yml:39","Warn: jobLevel 'contents' permission set to 'write': .github/workflows/release.yml:21","Info: topLevel 'contents' permission set to 'read': .github/workflows/ci.yml:4","Info: topLevel 'contents' permission set to 'read': .github/workflows/release.yml:4"],"documentation":{"short":"Determines if the project's workflows follow the principle of least privilege.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#token-permissions"}},{"name":"CII-Best-Practices","score":0,"reason":"no effort to earn an OpenSSF best practices badge detected","details":null,"documentation":{"short":"Determines if the project has an OpenSSF (formerly CII) Best Practices Badge.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#cii-best-practices"}},{"name":"Pinned-Dependencies","score":0,"reason":"dependency not pinned by hash detected -- score normalized to 0","details":["Warn: third-party GitHubAction not pinned by hash: .github/workflows/ci.yml:35: update your workflow using https://app.stepsecurity.io/secureworkflow/taiki-e/upload-rust-binary-action/ci.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/ci.yml:81: update your workflow using https://app.stepsecurity.io/secureworkflow/taiki-e/upload-rust-binary-action/ci.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/ci.yml:82: update your workflow using https://app.stepsecurity.io/secureworkflow/taiki-e/upload-rust-binary-action/ci.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/ci.yml:83: update your workflow using https://app.stepsecurity.io/secureworkflow/taiki-e/upload-rust-binary-action/ci.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/release.yml:23: update your workflow using https://app.stepsecurity.io/secureworkflow/taiki-e/upload-rust-binary-action/release.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/release.yml:24: update your workflow using https://app.stepsecurity.io/secureworkflow/taiki-e/upload-rust-binary-action/release.yml/main?enable=pin","Info:   0 out of   6 third-party GitHubAction dependencies pinned"],"documentation":{"short":"Determines if the project has declared and pinned the dependencies of its build process.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#pinned-dependencies"}},{"name":"Fuzzing","score":0,"reason":"project is not fuzzed","details":["Warn: no fuzzer integrations found"],"documentation":{"short":"Determines if the project uses fuzzing.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#fuzzing"}},{"name":"Vulnerabilities","score":10,"reason":"0 existing vulnerabilities detected","details":null,"documentation":{"short":"Determines if the project has open, known unfixed vulnerabilities.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#vulnerabilities"}},{"name":"License","score":10,"reason":"license file detected","details":["Info: project has a license file: LICENSE-APACHE:0","Info: FSF or OSI recognized license: Apache License 2.0: LICENSE-APACHE:0"],"documentation":{"short":"Determines if the project has defined a license.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#license"}},{"name":"Signed-Releases","score":-1,"reason":"no releases found","details":null,"documentation":{"short":"Determines if the project cryptographically signs release artifacts.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#signed-releases"}},{"name":"Branch-Protection","score":-1,"reason":"internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration","details":null,"documentation":{"short":"Determines if the default and release branches are protected with GitHub's branch protection settings.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#branch-protection"}},{"name":"Security-Policy","score":10,"reason":"security policy file detected","details":["Info: security policy file detected: github.com/taiki-e/.github/SECURITY.md:1","Info: Found linked content: github.com/taiki-e/.github/SECURITY.md:1","Info: Found disclosure, vulnerability, and/or timelines in security policy: github.com/taiki-e/.github/SECURITY.md:1","Info: Found text in security policy: github.com/taiki-e/.github/SECURITY.md:1"],"documentation":{"short":"Determines if the project has published a security policy.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#security-policy"}},{"name":"SAST","score":0,"reason":"SAST tool is not run on all commits -- score normalized to 0","details":["Warn: 0 commits out of 4 are checked with a SAST tool"],"documentation":{"short":"Determines if the project uses static code analysis.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#sast"}}]},"last_synced_at":"2025-08-24T02:40:54.104Z","repository_id":38269070,"created_at":"2025-08-24T02:40:54.104Z","updated_at":"2025-08-24T02:40:54.104Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30379264,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-11T06:09:32.197Z","status":"ssl_error","status_checked_at":"2026-03-11T06:09:17.086Z","response_time":84,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"},"owner_record":{"login":"taiki-e","name":"Taiki Endo","uuid":"43724913","kind":"user","description":"","email":"","website":null,"location":"Japan","twitter":"_taiki_e","company":null,"icon_url":"https://avatars.githubusercontent.com/u/43724913?v=4","repositories_count":286,"last_synced_at":"2024-05-01T10:44:06.998Z","metadata":{"has_sponsors_listing":true,"funding":{"github":"taiki-e"}},"html_url":"https://github.com/taiki-e","funding_links":["https://github.com/sponsors/taiki-e"],"total_stars":3644,"followers":700,"following":0,"created_at":"2022-11-02T16:27:20.918Z","updated_at":"2024-05-01T10:44:07.034Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/taiki-e","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/taiki-e/repositories"},"tags":[{"name":"v1.28.0","sha":"f391289bcff6a7f36b6301c0a74199657bbb4561","kind":"commit","published_at":"2026-02-11T09:49:50.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.28.0","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.28.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.28.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.28.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.28.0/manifests"},{"name":"v1.27.0","sha":"3962470d6e7f1993108411bc3f75a135ec67fc8c","kind":"commit","published_at":"2025-06-14T06:59:30.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.27.0","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.27.0","dependencies_parsed_at":"2025-06-20T04:12:57.688Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.27.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.27.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.27.0/manifests"},{"name":"v1.26.0","sha":"db101489b509ad1c7acce163e118eb36a1650f98","kind":"commit","published_at":"2025-05-03T09:49:17.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.26.0","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.26.0","dependencies_parsed_at":null,"dependency_job_id":"8401b723-a7dc-4728-b08a-5bca044880bb","purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.26.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.26.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.26.0/manifests"},{"name":"v1.25.0","sha":"31389c348ad0130069bed8448bf507fe8617f67f","kind":"commit","published_at":"2025-04-26T20:43:05.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.25.0","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.25.0","dependencies_parsed_at":null,"dependency_job_id":"405477a8-75c9-4bb7-b2e4-dc767672fcef","purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.25.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.25.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.25.0/manifests"},{"name":"v1.24.0","sha":"e7953b6078194a4ae5f5619632e3715db6275561","kind":"commit","published_at":"2024-12-17T14:24:49.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.24.0","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.24.0","dependencies_parsed_at":"2024-12-25T04:32:11.742Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.24.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.24.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.24.0/manifests"},{"name":"v1.23.0","sha":"4398438f25ce68e99e82e90744c88604b9b218a3","kind":"commit","published_at":"2024-11-11T16:03:47.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.23.0","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.23.0","dependencies_parsed_at":"2024-11-13T10:02:49.504Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.23.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.23.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.23.0/manifests"},{"name":"v1.22.1","sha":"3a8b5e35eb5fea810221264dfde09e920c1d5310","kind":"commit","published_at":"2024-10-19T13:06:22.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.22.1","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.22.1","dependencies_parsed_at":"2024-10-21T04:22:48.679Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.22.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.22.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.22.1/manifests"},{"name":"v1.22.0","sha":"3bbb07bb7f438d0fdf6ce5118bdf9e6e21c0b2a5","kind":"commit","published_at":"2024-08-12T23:48:18.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.22.0","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.22.0","dependencies_parsed_at":"2024-08-14T04:38:02.384Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.22.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.22.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.22.0/manifests"},{"name":"v1.21.1","sha":"4cb589740b9124d524fd00973bb4f2082bb55d10","kind":"commit","published_at":"2024-07-12T21:04:36.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.21.1","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.21.1","dependencies_parsed_at":"2024-07-14T04:20:47.395Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.21.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.21.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.21.1/manifests"},{"name":"v1.21.0","sha":"b988355f8b505d51359af5c8d4afc3646c3fac1e","kind":"commit","published_at":"2024-06-02T12:54:14.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.21.0","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.21.0","dependencies_parsed_at":"2024-06-04T04:30:09.933Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.21.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.21.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.21.0/manifests"},{"name":"v1.20.0","sha":"116e64492098f73785ffb2cf4c498df22c85e7a5","kind":"commit","published_at":"2024-04-10T15:09:15.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.20.0","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.20.0","dependencies_parsed_at":"2024-04-13T06:45:53.829Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.20.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.20.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.20.0/manifests"},{"name":"v1.19.2","sha":"582c0333888d1fa4c2bd75562fa6873bc19c2560","kind":"commit","published_at":"2024-04-03T12:24:19.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.19.2","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.19.2","dependencies_parsed_at":"2024-04-05T04:07:39.858Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.19.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.19.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.19.2/manifests"},{"name":"v1.19.1","sha":"01cb791d87a54d260100e35916d83c4030ee58b4","kind":"commit","published_at":"2024-03-26T01:58:35.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.19.1","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.19.1","dependencies_parsed_at":"2024-03-27T04:22:13.323Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.19.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.19.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.19.1/manifests"},{"name":"v1.19.0","sha":"6eae9d714e13744ede2258c97f4390dd0d88331e","kind":"commit","published_at":"2024-03-05T15:30:52.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.19.0","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.19.0","dependencies_parsed_at":"2024-03-07T04:25:48.818Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.19.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.19.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.19.0/manifests"},{"name":"v1.18.0","sha":"aefa20ac5893ee9a660dd3e995c9dc9a715e93f0","kind":"commit","published_at":"2023-12-03T08:41:01.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.18.0","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.18.0","dependencies_parsed_at":"2023-12-05T04:16:38.903Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.18.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.18.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.18.0/manifests"},{"name":"v1.17.1","sha":"272c412055d610c1b1adf56e9f238aa88c5ebf45","kind":"commit","published_at":"2023-10-23T05:35:22.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.17.1","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.17.1","dependencies_parsed_at":"2023-10-25T04:22:28.686Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.17.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.17.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.17.1/manifests"},{"name":"v1.17.0","sha":"f6b013bbda0fb47fb0e7a25a1e437b51971fb241","kind":"commit","published_at":"2023-10-09T06:24:26.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.17.0","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.17.0","dependencies_parsed_at":"2023-10-12T04:46:51.566Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.17.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.17.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.17.0/manifests"},{"name":"v1.16.1","sha":"c53aeb3a143a2b61773f7833bae48f4d66e255ce","kind":"commit","published_at":"2023-09-09T18:05:18.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.16.1","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.16.1","dependencies_parsed_at":"2023-09-12T05:22:37.989Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.16.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.16.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.16.1/manifests"},{"name":"v1.16.0","sha":"ec5d7654c921d18924d9bd28ee3576e1403b0ccf","kind":"commit","published_at":"2023-08-06T11:14:14.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.16.0","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.16.0","dependencies_parsed_at":"2023-08-09T05:10:06.540Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.16.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.16.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.16.0/manifests"},{"name":"v1.15.0","sha":"c9f1caf975b8e8d480ddbd5c731a787e92340c00","kind":"commit","published_at":"2023-06-26T08:40:06.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.15.0","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.15.0","dependencies_parsed_at":"2023-07-02T04:35:51.390Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.15.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.15.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.15.0/manifests"},{"name":"v1.14.0","sha":"d310f4341701c88533488a41daf7df8e3dbbdd84","kind":"commit","published_at":"2023-05-13T22:32:06.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.14.0","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.14.0","dependencies_parsed_at":"2023-06-01T00:18:06.574Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.14.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.14.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.14.0/manifests"},{"name":"v1.13.0","sha":"ade9959dd953f27e419d2f30cdccc30a76a94916","kind":"commit","published_at":"2023-03-22T15:26:08.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.13.0","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.13.0","dependencies_parsed_at":"2023-06-01T00:18:10.196Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.13.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.13.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.13.0/manifests"},{"name":"v1.12.1","sha":"408232a45f2147d0ae57f7aeb9d20ebcb7e3c7a3","kind":"commit","published_at":"2023-03-19T07:39:49.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.12.1","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.12.1","dependencies_parsed_at":"2023-06-01T00:18:08.654Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.12.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.12.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.12.1/manifests"},{"name":"v1.12.0","sha":"ff1be0eb3d9d68abc25fa700fc9357cbf3b4baea","kind":"commit","published_at":"2023-01-10T04:01:39.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.12.0","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.12.0","dependencies_parsed_at":"2023-06-01T00:18:10.659Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.12.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.12.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.12.0/manifests"},{"name":"v1.11.1","sha":"38bb4f3458430d4824e056dce01dc79881428775","kind":"commit","published_at":"2022-12-28T02:24:55.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.11.1","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.11.1","dependencies_parsed_at":"2023-06-01T00:18:09.215Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.11.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.11.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.11.1/manifests"},{"name":"v1.11.0","sha":"c0184fa0537023c705338c58b0d6f9d03d04f4eb","kind":"commit","published_at":"2022-12-03T18:06:37.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.11.0","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.11.0","dependencies_parsed_at":"2023-06-01T00:18:10.370Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.11.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.11.0/manifests"},{"name":"v1.10.0","sha":"23d6d6f4c1e5cafdd9a05ef1a34a1e1423a1b010","kind":"commit","published_at":"2022-10-28T02:17:49.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.10.0","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.10.0","dependencies_parsed_at":"2023-06-01T00:18:08.862Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.10.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.10.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.10.0/manifests"},{"name":"v1.9.1","sha":"57510bf386b3945b57963e73201cea60ca18dff4","kind":"commit","published_at":"2022-09-16T14:55:50.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.9.1","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.9.1","dependencies_parsed_at":"2023-05-31T16:03:10.479Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.9.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.9.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.9.1/manifests"},{"name":"v1","sha":"57510bf386b3945b57963e73201cea60ca18dff4","kind":"commit","published_at":"2022-09-16T14:55:50.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1","dependencies_parsed_at":"2023-05-31T16:03:10.776Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1/manifests"},{"name":"v1.9.0","sha":"0d0e389aa9924a4e5feba8a8f7b61ab09018fd58","kind":"commit","published_at":"2022-09-08T15:45:44.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.9.0","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.9.0","dependencies_parsed_at":"2023-05-31T16:03:11.263Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.9.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.9.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.9.0/manifests"},{"name":"v1.8.0","sha":"2b070262150b60f65d9ff45430a490c663e8ecbe","kind":"commit","published_at":"2022-08-28T09:30:38.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.8.0","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.8.0","dependencies_parsed_at":"2023-05-31T16:03:11.770Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.8.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.8.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.8.0/manifests"},{"name":"v1.7.2","sha":"2ef6065015f8372403d76e6a1fb2f8094c5d6f18","kind":"commit","published_at":"2022-07-08T16:18:43.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.7.2","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.7.2","dependencies_parsed_at":"2023-05-31T16:03:12.222Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.7.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.7.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.7.2/manifests"},{"name":"v1.7.1","sha":"e08c1c8912dd7edef3fcd931a045255bfc140ac3","kind":"commit","published_at":"2022-07-08T16:09:24.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.7.1","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.7.1","dependencies_parsed_at":"2023-05-31T16:03:12.635Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.7.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.7.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.7.1/manifests"},{"name":"v1.7.0","sha":"af9e8a13bae3fa04187316e88d76353037127e4c","kind":"commit","published_at":"2022-07-07T15:46:48.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.7.0","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.7.0","dependencies_parsed_at":"2023-05-31T16:03:13.086Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.7.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.7.0/manifests"},{"name":"v1.6.1","sha":"31264facd37ebf04513b82e117f22a886d5d0353","kind":"commit","published_at":"2022-07-06T03:54:33.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.6.1","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.6.1","dependencies_parsed_at":"2023-05-31T16:03:13.492Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.6.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.6.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.6.1/manifests"},{"name":"v1.6.0","sha":"f6fddda3898e2e4beb55d5caa5989640ba0e020c","kind":"commit","published_at":"2022-07-05T18:38:26.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.6.0","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.6.0","dependencies_parsed_at":"2023-05-31T16:03:13.866Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.6.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.6.0/manifests"},{"name":"v1.5.0","sha":"483ed6088d227bed395d8eec6747d04633cd778f","kind":"commit","published_at":"2022-07-05T14:06:42.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.5.0","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.5.0","dependencies_parsed_at":"2023-05-31T16:03:14.233Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.5.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.5.0/manifests"},{"name":"v1.4.0","sha":"a5c0b6d6292a1acd479d5b1fafc3a6d2a2c0311b","kind":"commit","published_at":"2022-06-08T04:57:48.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.4.0","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.4.0","dependencies_parsed_at":"2023-05-31T16:03:14.739Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.4.0/manifests"},{"name":"v1.3.0","sha":"ce1352fa8c3a260a14f2ef7a5790b06cdfcce1aa","kind":"commit","published_at":"2022-05-01T04:05:45.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.3.0","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.3.0","dependencies_parsed_at":"2023-05-31T16:03:15.209Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.3.0/manifests"},{"name":"v1.2.0","sha":"edd71c2c1d96a4e118fbcb8d5f83e0bfd19a438a","kind":"commit","published_at":"2021-12-30T12:22:35.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.2.0","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.2.0","dependencies_parsed_at":"2023-05-31T16:03:15.672Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.2.0/manifests"},{"name":"v1.1.0","sha":"c8d660c72e036877d5f6e45fd5d04334a785c712","kind":"commit","published_at":"2021-09-29T13:42:16.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.1.0","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.1.0","dependencies_parsed_at":"2023-05-31T16:03:16.114Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.1.0/manifests"},{"name":"v1.0.2","sha":"69454786145d7543d233fabc0d188b7e172f6fd1","kind":"commit","published_at":"2021-02-28T09:28:05.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.0.2","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.0.2","dependencies_parsed_at":"2023-05-31T16:03:16.677Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.0.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.0.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.0.2/manifests"},{"name":"v1.0.1","sha":"f3915bac61029feb3f4eaeb06ffb02039c938779","kind":"commit","published_at":"2021-02-12T16:41:07.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.0.1","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.0.1","dependencies_parsed_at":"2023-05-31T16:03:17.595Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.0.1/manifests"},{"name":"v1.0.0","sha":"0ffbce0b2823caec877bdfebe26fa53f5d10f57e","kind":"commit","published_at":"2021-02-04T10:33:04.000Z","download_url":"https://codeload.github.com/taiki-e/upload-rust-binary-action/tar.gz/v1.0.0","html_url":"https://github.com/taiki-e/upload-rust-binary-action/releases/tag/v1.0.0","dependencies_parsed_at":"2023-05-31T16:03:18.129Z","dependency_job_id":null,"purl":"pkg:github/taiki-e/upload-rust-binary-action@v1.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/tags/v1.0.0/manifests"}]},"repo_metadata_updated_at":"2026-03-11T11:03:57.588Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":233,"rankings":{"downloads":null,"dependent_repos_count":2.7634289336079862,"dependent_packages_count":0.0,"stargazers_count":1.584534938995405,"forks_count":5.339882744414514,"docker_downloads_count":1.6289019172872763,"average":2.263349706861036},"purl":"pkg:githubactions/taiki-e/upload-rust-binary-action","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/taiki-e/upload-rust-binary-action","docker_dependents_count":1,"docker_downloads_count":1983,"usage_url":"https://repos.ecosyste.ms/usage/actions/taiki-e/upload-rust-binary-action","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/taiki-e/upload-rust-binary-action/dependencies","status":null,"funding_links":["https://github.com/sponsors/taiki-e"],"critical":null,"issue_metadata":{"last_synced_at":"2026-01-23T17:00:52.908Z","issues_count":67,"pull_requests_count":48,"avg_time_to_close_issue":5585822.4772727275,"avg_time_to_close_pull_request":357545.23255813954,"issues_closed_count":44,"pull_requests_closed_count":43,"pull_request_authors_count":16,"issue_authors_count":47,"avg_comments_per_issue":1.7313432835820897,"avg_comments_per_pull_request":1.0625,"merged_pull_requests_count":41,"bot_issues_count":0,"bot_pull_requests_count":1,"past_year_issues_count":10,"past_year_pull_requests_count":6,"past_year_avg_time_to_close_issue":267193.0,"past_year_avg_time_to_close_pull_request":753909.0,"past_year_issues_closed_count":3,"past_year_pull_requests_closed_count":5,"past_year_pull_request_authors_count":2,"past_year_issue_authors_count":9,"past_year_avg_comments_per_issue":1.1,"past_year_avg_comments_per_pull_request":1.0,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":0,"past_year_merged_pull_requests_count":5,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fupload-rust-binary-action/issues","maintainers":[{"login":"taiki-e","count":38,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/taiki-e"}],"active_maintainers":[]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/taiki-e%2Fupload-rust-binary-action/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/taiki-e%2Fupload-rust-binary-action/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/taiki-e%2Fupload-rust-binary-action/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/taiki-e%2Fupload-rust-binary-action/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/taiki-e%2Fupload-rust-binary-action/codemeta","maintainers":[]}