Skip to content

Commit 776fb91

Browse files
chore(deps): Bump sha2 from 0.10.9 to 0.11.0 in /src/sandbox/runtime (#128)
* chore(deps): Bump sha2 from 0.10.9 to 0.11.0 in /src/sandbox/runtime Bumps [sha2](https://github.com/RustCrypto/hashes) from 0.10.9 to 0.11.0. - [Commits](RustCrypto/hashes@sha2-v0.10.9...sha2-v0.11.0) --- updated-dependencies: - dependency-name: sha2 dependency-version: 0.11.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * fix(deps): bump sha2 to 0.11 (with coupled sha1/digest) sha2 0.11 pulls digest 0.11, but native-globals also depends on sha1 and digest directly. Mixing sha2 0.11 with sha1/digest 0.10 produces two incompatible `digest::Digest` traits, so bump all three to 0.11 together. The hashing API (Sha1/Sha256 new/update/finalize) is unchanged, so no code edits are needed. Signed-off-by: Simon Davies <simongdavies@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Simon Davies <simongdavies@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Simon Davies <simongdavies@users.noreply.github.com>
1 parent bacfd68 commit 776fb91

2 files changed

Lines changed: 74 additions & 17 deletions

File tree

src/sandbox/runtime/Cargo.lock

Lines changed: 71 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/sandbox/runtime/modules/native-globals/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ unexpected_cfgs = { level = "allow", check-cfg = ['cfg(hyperlight)'] }
88

99
[dependencies]
1010
rquickjs = { version = "0.11", default-features = false, features = ["bindgen", "macro"] }
11-
sha1 = { version = "0.10", default-features = false }
12-
sha2 = { version = "0.10", default-features = false }
13-
digest = { version = "0.10", default-features = false }
11+
sha1 = { version = "0.11", default-features = false }
12+
sha2 = { version = "0.11", default-features = false }
13+
digest = { version = "0.11", default-features = false }

0 commit comments

Comments
 (0)