chore(crypto): upgrade dependencies (#4530)

* docs(fs): polish documentation (#4526)

* Try this.

* bad name

* Revert "bad name"

This reverts commit 677f1649e3.

Revert "Try this."

This reverts commit 7d0f73c1e8.

* try this

---------

Co-authored-by: David Sherret <dsherret@gmail.com>
This commit is contained in:
Asher Gomez 2024-03-28 13:24:37 +11:00 committed by GitHub
parent 7d419485c7
commit bcfc7e003e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 2336 additions and 2334 deletions

View File

@ -136,7 +136,7 @@ jobs:
if: success() && steps.source.outputs.modified == 'true'
with:
# This must match the version in _wasm/rust-toolchain.toml of the module folder
rust-version: 1.76.0
rust-version: 1.77.0
targets: wasm32-unknown-unknown
components: rustfmt

View File

@ -25,9 +25,9 @@ dependencies = [
[[package]]
name = "blake3"
version = "1.5.0"
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0231f06152bf547e9c2b5194f247cd97aacf6dcd8b15d8e5ec0663f64580da87"
checksum = "30cca6d3674597c30ddf2c587bf8d9d65c9a84d2326d941cc79c9842dfe0ef52"
dependencies = [
"arrayref",
"arrayvec",
@ -161,9 +161,9 @@ dependencies = [
[[package]]
name = "js-sys"
version = "0.3.68"
version = "0.3.69"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "406cda4b368d531c842222cf9d2600a9a4acce8d29423695379c6868a143a9ee"
checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
dependencies = [
"wasm-bindgen",
]
@ -345,9 +345,9 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
[[package]]
name = "wasm-bindgen"
version = "0.2.91"
version = "0.2.92"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1e124130aee3fb58c5bdd6b639a0509486b0338acaaae0c84a5124b0f588b7f"
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
@ -355,9 +355,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-backend"
version = "0.2.91"
version = "0.2.92"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c9e7e1900c352b609c8488ad12639a311045f40a35491fb69ba8c12f758af70b"
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
dependencies = [
"bumpalo",
"log",
@ -370,9 +370,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.91"
version = "0.2.92"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b30af9e2d358182b5c7449424f017eba305ed32a7010509ede96cdc4696c46ed"
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
@ -380,9 +380,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.91"
version = "0.2.92"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "642f325be6301eb8107a83d12a8ac6c1e1c54345a7ef1a9261962dfefda09e66"
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
dependencies = [
"proc-macro2",
"quote",
@ -393,6 +393,6 @@ dependencies = [
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.91"
version = "0.2.92"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4f186bd2dcf04330886ce82d6f33dd75a7bfcf69ecf5763b89fcde53b6ac9838"
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"

View File

@ -18,11 +18,11 @@ opt-level = 3
[dependencies]
blake2 = "0.10.6"
blake3 = { version = "1.5.0", features = ["traits-preview"] }
blake3 = { version = "1.5.1", features = ["traits-preview"] }
derive_more = "0.99.17"
digest = { version = "0.10.7", features = ["core-api", "std"] }
generic-array = "1.0.0"
js-sys = "0.3.68"
js-sys = "0.3.69"
md4 = "0.10.2"
md-5 = "0.10.6"
ripemd = "0.1.3"
@ -31,4 +31,4 @@ sha2 = "0.10.8"
sha3 = "0.10.8"
tiger = "0.2.1"
typenum = "1.17.0"
wasm-bindgen = "=0.2.91"
wasm-bindgen = "=0.2.92"

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,3 @@
[toolchain]
channel = "1.76.0"
channel = "1.77.0"
targets = ["wasm32-unknown-unknown", "rustfmt"]

View File

@ -24,7 +24,7 @@
"lint": "deno lint && deno task fmt:licence-headers --check && deno task lint:deprecations && deno task lint:doc-imports && deno task lint:circular && deno task lint:tools-types && deno task lint:mod-exports",
"typos": "typos -c ./.github/workflows/typos.toml",
"build:crypto": "deno task --cwd crypto/_wasm wasmbuild",
"wasmbuild": "deno run -A jsr:@deno/wasmbuild@0.16.0 --js-ext mjs --sync",
"wasmbuild": "deno run -A jsr:@deno/wasmbuild@0.17.1 --js-ext mjs --sync",
"cov:gen": "deno coverage coverage --lcov --output=cov.lcov",
"cov:view": "deno coverage --html coverage",
"ok": "deno task lint && deno fmt --check && deno task test:browser && deno task test"