mirror of
https://github.com/taiki-e/install-action.git
synced 2026-04-28 10:00:26 +00:00
Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4c4c02be3f | ||
|
|
988eb8cb87 | ||
|
|
d108325e53 | ||
|
|
b794382280 | ||
|
|
509a1e8a43 | ||
|
|
a4f3fb44a5 | ||
|
|
048abf9a2a | ||
|
|
331a600f1b | ||
|
|
7fac9c0890 | ||
|
|
b6880389f3 | ||
|
|
a03b7590b9 | ||
|
|
956e07555c | ||
|
|
3b0d937160 | ||
|
|
5a7b7e3798 |
@@ -1,6 +1,7 @@
|
||||
# Clippy configuration
|
||||
# https://doc.rust-lang.org/nightly/clippy/lint_configuration.html
|
||||
|
||||
allow-private-module-inception = true
|
||||
avoid-breaking-exported-api = false
|
||||
disallowed-names = []
|
||||
disallowed-macros = [
|
||||
@@ -10,4 +11,5 @@ disallowed-methods = [
|
||||
{ path = "std::env::remove_var", reason = "this is not thread-safe and inherently unsafe; see <https://github.com/rust-lang/rust/issues/27970> for more" },
|
||||
{ path = "std::env::set_var", reason = "this is not thread-safe and inherently unsafe; see <https://github.com/rust-lang/rust/issues/27970> for more" },
|
||||
]
|
||||
disallowed-types = []
|
||||
disallowed-types = [
|
||||
]
|
||||
|
||||
3
.github/.cspell/project-dictionary.txt
vendored
3
.github/.cspell/project-dictionary.txt
vendored
@@ -15,12 +15,15 @@ endgroup
|
||||
epel
|
||||
espup
|
||||
etag
|
||||
fastestmirror
|
||||
grcov
|
||||
knope
|
||||
linkcheck
|
||||
mdbook
|
||||
microdnf
|
||||
mirrorlist
|
||||
nextest
|
||||
pluginconf
|
||||
protoc
|
||||
pubkey
|
||||
pwsh
|
||||
|
||||
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
@@ -140,6 +140,14 @@ jobs:
|
||||
timeout-minutes: 60
|
||||
container: ${{ matrix.container }}
|
||||
steps:
|
||||
- name: Install requirements (centos)
|
||||
run: |
|
||||
set -eEuxo pipefail
|
||||
# https://github.com/rust-lang/rust/pull/126352
|
||||
sed -i /etc/yum.repos.d/*.repo -e 's!^mirrorlist!#mirrorlist!' \
|
||||
-e 's!^#baseurl=http://mirror.centos.org/!baseurl=https://vault.centos.org/!'
|
||||
sed -i 's/enabled=1/enabled=0/' /etc/yum/pluginconf.d/fastestmirror.conf
|
||||
if: startsWith(matrix.container, 'centos')
|
||||
- name: Install requirements (alpine)
|
||||
run: apk --no-cache add bash
|
||||
shell: sh
|
||||
|
||||
30
CHANGELOG.md
30
CHANGELOG.md
@@ -10,6 +10,30 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [2.41.8] - 2024-07-04
|
||||
|
||||
- Update `wasm-pack@latest` to 0.13.0.
|
||||
|
||||
- Update `editorconfig-checker@latest` to 3.0.3.
|
||||
|
||||
- Update `cargo-udeps@latest` to 0.1.49.
|
||||
|
||||
- Update `dprint@latest` to 0.47.0.
|
||||
|
||||
## [2.41.7] - 2024-06-27
|
||||
|
||||
- Update `biome@latest` to 1.8.3.
|
||||
|
||||
## [2.41.6] - 2024-06-27
|
||||
|
||||
- Update `jaq@latest` to 1.5.0.
|
||||
|
||||
- Update `git-cliff@latest` to 2.4.0.
|
||||
|
||||
## [2.41.5] - 2024-06-25
|
||||
|
||||
- Update `protoc@latest` to 3.27.2.
|
||||
|
||||
## [2.41.4] - 2024-06-25
|
||||
|
||||
- Update `zola@latest` to 0.19.1.
|
||||
@@ -2394,7 +2418,11 @@ Note: This release is considered a breaking change because installing on version
|
||||
|
||||
Initial release
|
||||
|
||||
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.41.4...HEAD
|
||||
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.41.8...HEAD
|
||||
[2.41.8]: https://github.com/taiki-e/install-action/compare/v2.41.7...v2.41.8
|
||||
[2.41.7]: https://github.com/taiki-e/install-action/compare/v2.41.6...v2.41.7
|
||||
[2.41.6]: https://github.com/taiki-e/install-action/compare/v2.41.5...v2.41.6
|
||||
[2.41.5]: https://github.com/taiki-e/install-action/compare/v2.41.4...v2.41.5
|
||||
[2.41.4]: https://github.com/taiki-e/install-action/compare/v2.41.3...v2.41.4
|
||||
[2.41.3]: https://github.com/taiki-e/install-action/compare/v2.41.2...v2.41.3
|
||||
[2.41.2]: https://github.com/taiki-e/install-action/compare/v2.41.1...v2.41.2
|
||||
|
||||
@@ -31,12 +31,13 @@ declare_interior_mutable_const = { level = "allow", priority = 1 } # https://git
|
||||
doc_markdown = { level = "allow", priority = 1 }
|
||||
float_cmp = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/7725
|
||||
incompatible_msrv = { level = "allow", priority = 1 } # buggy: doesn't consider cfg, https://github.com/rust-lang/rust-clippy/issues/12280, https://github.com/rust-lang/rust-clippy/issues/12257#issuecomment-2093667187
|
||||
lint_groups_priority = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/12270
|
||||
lint_groups_priority = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/12920
|
||||
manual_assert = { level = "allow", priority = 1 }
|
||||
manual_range_contains = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/6455#issuecomment-1225966395
|
||||
missing_errors_doc = { level = "allow", priority = 1 }
|
||||
module_name_repetitions = { level = "allow", priority = 1 }
|
||||
module_name_repetitions = { level = "allow", priority = 1 } # buggy: https://github.com/rust-lang/rust-clippy/issues?q=is%3Aissue+is%3Aopen+module_name_repetitions
|
||||
nonminimal_bool = { level = "allow", priority = 1 } # buggy: https://github.com/rust-lang/rust-clippy/issues?q=is%3Aissue+is%3Aopen+nonminimal_bool
|
||||
range_plus_one = { level = "allow", priority = 1 } # buggy: https://github.com/rust-lang/rust-clippy/issues?q=is%3Aissue+is%3Aopen+range_plus_one
|
||||
similar_names = { level = "allow", priority = 1 }
|
||||
single_match = { level = "allow", priority = 1 }
|
||||
single_match_else = { level = "allow", priority = 1 }
|
||||
|
||||
32
manifests/biome.json
generated
32
manifests/biome.json
generated
@@ -36,13 +36,39 @@
|
||||
},
|
||||
"license_markdown": "[Apache-2.0](https://github.com/biomejs/biome/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/biomejs/biome/blob/main/LICENSE-MIT)",
|
||||
"latest": {
|
||||
"version": "1.8.2"
|
||||
"version": "1.8.3"
|
||||
},
|
||||
"1": {
|
||||
"version": "1.8.2"
|
||||
"version": "1.8.3"
|
||||
},
|
||||
"1.8": {
|
||||
"version": "1.8.2"
|
||||
"version": "1.8.3"
|
||||
},
|
||||
"1.8.3": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DC96B6585206DE",
|
||||
"checksum": "f3db16d376d77cdc28f8031d2e2db95f3620c6f1e463e555bb5f3c441b6b96e5"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DC96B65864DD5B",
|
||||
"checksum": "2cc112178363fa0e11d8f26e0d80598eff6ce481a1ee224b8a8ae2b8a5185124"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DC96B6585BE6C4",
|
||||
"checksum": "541f9a1caa226e6fbb872f16009ac554b16e149c10f9096ebe3f08867c9dbf31"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DC96B65838811D",
|
||||
"checksum": "4f9f2a63255b335a80a197b80a0b2d5d00086c29205dfe7b9b6138c010777987"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DC96B65804B322",
|
||||
"checksum": "9d707c28ee8e13158d2b9890dd9faf064a4ea6dabde2009a6a8607480ae8c24a"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DC96B65827565F",
|
||||
"checksum": "d888438925f2d5627afb6be11389c0893070c75b7d9b2d10f196fba910dc3b37"
|
||||
}
|
||||
},
|
||||
"1.8.2": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
30
manifests/cargo-udeps.json
generated
30
manifests/cargo-udeps.json
generated
@@ -32,10 +32,36 @@
|
||||
},
|
||||
"license_markdown": "[Apache-2.0 OR MIT](https://github.com/est31/cargo-udeps/blob/HEAD/LICENSE)",
|
||||
"latest": {
|
||||
"version": "0.1.47"
|
||||
"version": "0.1.49"
|
||||
},
|
||||
"0.1": {
|
||||
"version": "0.1.47"
|
||||
"version": "0.1.49"
|
||||
},
|
||||
"0.1.49": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DC99D41E6DD27F",
|
||||
"checksum": "6560e6c3552aad9e0fc8f22e5da037dda9bf59679b24ac356e52ca3a39643cf9"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DC99D3C31AF8EA",
|
||||
"checksum": "e003456220751afe3fa41becaeacbbcc5616351be94873100c2c11a784e1e9a6"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DC99D4A352D0EF",
|
||||
"checksum": "f6b592e436d862b51a52ff0a7ecd91057d54495682cce8db1efe9711e60f122b"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DC99D423CED395",
|
||||
"checksum": "060fa3900ec5b6644351887b7fd649dcf89e425cb0926f704b24914474d760ce"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DC99D436444D90",
|
||||
"checksum": "1a66df7bae93dba126f0027fab1b92124e9302f65a3c56184c5a1e5134817136"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DC99D4CEF35FB2",
|
||||
"checksum": "9c84272c91c516b305bb6d9e6c342b8b30e28f05d476e86b052baad4a330f676"
|
||||
}
|
||||
},
|
||||
"0.1.47": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
27
manifests/dprint.json
generated
27
manifests/dprint.json
generated
@@ -25,7 +25,32 @@
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/dprint/dprint/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "0.46.3"
|
||||
"version": "0.47.0"
|
||||
},
|
||||
"0.47": {
|
||||
"version": "0.47.0"
|
||||
},
|
||||
"0.47.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DC996BDF0F00D2",
|
||||
"checksum": "37f2df1ff56398bad8846dde56013c1e299738f1c0875cb7b64deab7ce5591a4"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DC996BDEFC77F4",
|
||||
"checksum": "9235688846867abdd69c214a1cade5fd4348be82bcc1075b2b447d535bf483a2"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DC996BDF056E92",
|
||||
"checksum": "3ef87318905ae627d2a4c8ad4938161c3ef11cd10cd5fdf74fff89343bcca3f5"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DC996BDF0E1779",
|
||||
"checksum": "913d0b9fb38aa6a8025f07ea562aec9a471284b4ebfc85331a3e5336f1e76187"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DC996BDF06F37D",
|
||||
"checksum": "78d939c95291dabadde7c05ceb32f5e6c4616b5f1896b8881f974f5553868c6d"
|
||||
}
|
||||
},
|
||||
"0.46": {
|
||||
"version": "0.46.3"
|
||||
|
||||
58
manifests/editorconfig-checker.json
generated
58
manifests/editorconfig-checker.json
generated
@@ -28,13 +28,65 @@
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/editorconfig-checker/editorconfig-checker/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "3.0.1"
|
||||
"version": "3.0.3"
|
||||
},
|
||||
"3": {
|
||||
"version": "3.0.1"
|
||||
"version": "3.0.3"
|
||||
},
|
||||
"3.0": {
|
||||
"version": "3.0.1"
|
||||
"version": "3.0.3"
|
||||
},
|
||||
"3.0.3": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DC9B4F6F214767",
|
||||
"checksum": "fc698b0bf5bca0d42e28dd59d72e25487a51f645ca242c5f74bae975369f16aa"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DC9B4F53C6A5D4",
|
||||
"checksum": "34bb2f4f34c4909b4ff415a5054ed47a6162f4e03857bdf2cfd7d166bbc91ce0"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DC9B4FAFC7A9F3",
|
||||
"checksum": "97d7b0530a172e49310010408286176665bbeedf6b38058ac3f125409c3a3b82"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DC9B4F74C548E5",
|
||||
"checksum": "d5991ae92170af79ec2052840176bf155d00eaf6eb5a2c8ffbf46f6378c21776"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DC9B4F56839C1F",
|
||||
"checksum": "70b7f80dbfa89454dfa68f40c5d2f871bd8c311f01c822f78455b94536d87995"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DC9B4FB58861E0",
|
||||
"checksum": "6561c4a34c9e7df7e3f5abfaed5bbe5e43317db222b637f4b3a6d8e298120384"
|
||||
}
|
||||
},
|
||||
"3.0.2": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DC9A9036E834A7",
|
||||
"checksum": "2f11b26b34d97f07120038bf517af029b99f90fe96b77369fd66a301ab7a557e"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DC9A901B300824",
|
||||
"checksum": "8e935c86dc9c8b4156ae96292b7f490b73cb8c50a3ab3943792dcbe6b7474764"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DC9A9078A4F62F",
|
||||
"checksum": "74ecb356917a55ad4276b09ae2cd0fe28ab8878121c5173a35b5acadd50e7bf1"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DC9A903C7370B0",
|
||||
"checksum": "8836eabc57daf4717b55ae2ce002469f8a14123c2129b7a9cf0597c98acfe928"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DC9A901E0A289A",
|
||||
"checksum": "0eb627ea862b81c7645052a142fc0ff882fe491aad040a8be6a80f2d36a8635f"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DC9A907E6D6B4A",
|
||||
"checksum": "3eb2ea381ad5c621f41a8c1bd2fc9312b5aabfa904078f4a4875302f4a8434ec"
|
||||
}
|
||||
},
|
||||
"3.0.1": {
|
||||
"x86_64_linux_gnu": {
|
||||
|
||||
33
manifests/git-cliff.json
generated
33
manifests/git-cliff.json
generated
@@ -28,10 +28,39 @@
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/orhun/git-cliff/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/orhun/git-cliff/blob/main/LICENSE-APACHE)",
|
||||
"latest": {
|
||||
"version": "2.3.0"
|
||||
"version": "2.4.0"
|
||||
},
|
||||
"2": {
|
||||
"version": "2.3.0"
|
||||
"version": "2.4.0"
|
||||
},
|
||||
"2.4": {
|
||||
"version": "2.4.0"
|
||||
},
|
||||
"2.4.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DC95C89990A18C",
|
||||
"checksum": "4c84e437937b3d6796e8305069bda416cc86245deb6f4f4775314e61501e8460"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DC95C8604ACF69",
|
||||
"checksum": "ae0826f29f0d2e4b6c1d85ed763772d19dce24e70c3f5ecfff48e9f8b4d44b96"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DC95C99F4C8069",
|
||||
"checksum": "787d216a589573917c0279cc53c328d1f64ed88b2e9c4a467647527a207698e8"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DC95C89B11E691",
|
||||
"checksum": "2b2b1b175f5fc9198f5033fddf9aabf3ca048aca5c9751eef85d91572d8bbc3c"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DC95C86B530214",
|
||||
"checksum": "9674684fc544333f25c04a867316c12d66f9357c12010bdef919feca0ca2e4c7"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DC95C97CB64DA6",
|
||||
"checksum": "51cd00f04e3187a36a6b5ab65d699f329187083b4c2e8849bf5f0e70dd7d3266"
|
||||
}
|
||||
},
|
||||
"2.3": {
|
||||
"version": "2.3.0"
|
||||
|
||||
29
manifests/jaq.json
generated
29
manifests/jaq.json
generated
@@ -19,10 +19,35 @@
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/01mf02/jaq/blob/main/LICENSE-MIT)",
|
||||
"latest": {
|
||||
"version": "1.4.0"
|
||||
"version": "1.5.0"
|
||||
},
|
||||
"1": {
|
||||
"version": "1.4.0"
|
||||
"version": "1.5.0"
|
||||
},
|
||||
"1.5": {
|
||||
"version": "1.5.0"
|
||||
},
|
||||
"1.5.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DC95C7C0742176",
|
||||
"checksum": "36095f210f014670b50d5d8d447a3978abb6a919227f7f6140e7cb673d7503f0"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DC95C7D06D3AE9",
|
||||
"checksum": "fb15e68e47ad19dfa15dcec1adb41104e9ff7b1a6b2af8325fe21f7a239cdeae"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DC95C80589FC91",
|
||||
"checksum": "b8aad49b6186446f726a90816814201e2d3f8574cd6c399087e507e68f6f708b"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DC95C7C4D0BF9A",
|
||||
"checksum": "a04f2cd1be227acc596dda7015da53f57b012951cf8234a230641ca7f700b602"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DC95C7D5667A65",
|
||||
"checksum": "963b0261155f9d78b04d30372f2bb772623fc5402057c767c002211f9a744958"
|
||||
}
|
||||
},
|
||||
"1.4": {
|
||||
"version": "1.4.0"
|
||||
|
||||
33
manifests/protoc.json
generated
33
manifests/protoc.json
generated
@@ -3,13 +3,40 @@
|
||||
"template": null,
|
||||
"license_markdown": "[BSD-3-Clause](https://github.com/protocolbuffers/protobuf/blob/HEAD/LICENSE)",
|
||||
"latest": {
|
||||
"version": "3.27.1"
|
||||
"version": "3.27.2"
|
||||
},
|
||||
"3": {
|
||||
"version": "3.27.1"
|
||||
"version": "3.27.2"
|
||||
},
|
||||
"3.27": {
|
||||
"version": "3.27.1"
|
||||
"version": "3.27.2"
|
||||
},
|
||||
"3.27.2": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v27.2/protoc-27.2-linux-x86_64.zip",
|
||||
"etag": "0x8DC9550B6231BCD",
|
||||
"checksum": "4a95e0ea2e51720af86a92f48d4997c8756923a9d0c58fd8a850657cd7479caf"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v27.2/protoc-27.2-osx-x86_64.zip",
|
||||
"etag": "0x8DC9550B67D0B8E",
|
||||
"checksum": "abc25a236571612d45eb4b6b6e6abe3ac9aecc34b195f76f248786844f5619c7"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v27.2/protoc-27.2-win64.zip",
|
||||
"etag": "0x8DC9550B68E8419",
|
||||
"checksum": "a1ea403f845ff4819163ac9da01b14d1d88056231f185f3d83fa7efe542e31f7"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v27.2/protoc-27.2-linux-aarch_64.zip",
|
||||
"etag": "0x8DC9550B5DB4011",
|
||||
"checksum": "ff4760bd4ae510d533e528cc6deb8e32e53f383f0ec01b0327233b4c2e8db314"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v27.2/protoc-27.2-osx-aarch_64.zip",
|
||||
"etag": "0x8DC9550B65A4164",
|
||||
"checksum": "877de17b5d2662b96e68a6e208cb1851437ab3e2b419c2ef5b7b873ffac5357d"
|
||||
}
|
||||
},
|
||||
"3.27.1": {
|
||||
"x86_64_linux_gnu": {
|
||||
|
||||
23
manifests/wasm-pack.json
generated
23
manifests/wasm-pack.json
generated
@@ -20,7 +20,28 @@
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/rustwasm/wasm-pack/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/rustwasm/wasm-pack/blob/master/LICENSE-APACHE)",
|
||||
"latest": {
|
||||
"version": "0.12.1"
|
||||
"version": "0.13.0"
|
||||
},
|
||||
"0.13": {
|
||||
"version": "0.13.0"
|
||||
},
|
||||
"0.13.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DC99FFA65482D0",
|
||||
"checksum": "1da923cf0ebbbe335bf60795e192b34d6de9076703391e76c9df6fbcf0737d18"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DC99FFA8BA1C8E",
|
||||
"checksum": "1f2fd284558c90f618e821ea0508a6298f97fcdf2387154e1f60664b7777ac3e"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DC99FFA778F477",
|
||||
"checksum": "d8f7a22cb638396cdebf42bbd9c8540a03887b2b53a8871b82cef3109641b27f"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DC99FFA6E7DF50",
|
||||
"checksum": "e491a03df34a6e4a1df168cb4d16a4ebda368d681864644b4b97472fa9877713"
|
||||
}
|
||||
},
|
||||
"0.12": {
|
||||
"version": "0.12.1"
|
||||
|
||||
Reference in New Issue
Block a user