Skip to content

Commit 1a7ea63

Browse files
dependabot[bot]simongdaviesCopilot
authored
chore(deps): Bump rquickjs from 0.11.0 to 0.12.0 in /src/sandbox/runtime (#175)
* chore(deps): Bump rquickjs from 0.11.0 to 0.12.0 in /src/sandbox/runtime Bumps [rquickjs](https://github.com/DelSkayn/rquickjs) from 0.11.0 to 0.12.0. - [Changelog](https://github.com/DelSkayn/rquickjs/blob/master/CHANGELOG.md) - [Commits](DelSkayn/rquickjs@v0.11.0...v0.12.0) --- updated-dependencies: - dependency-name: rquickjs dependency-version: 0.12.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * chore(deps): point hyperlight-js at rquickjs 0.12-compatible commit Update Cargo.lock so hyperlight-js-runtime/hyperlight-js-common resolve to the hyperagent-branch commit that migrates to rquickjs 0.12. This removes the duplicate rquickjs 0.11 from the graph, resolving the ModuleDef trait conflict that broke the sandbox runtime build. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> 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> Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent fe12a25 commit 1a7ea63

7 files changed

Lines changed: 32 additions & 21 deletions

File tree

src/sandbox/runtime/Cargo.lock

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

src/sandbox/runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ native-image = { path = "modules/native-image" }
1919
native-html = { path = "modules/native-html" }
2020
native-markdown = { path = "modules/native-markdown" }
2121
native-globals = { path = "modules/native-globals" }
22-
rquickjs = { version = "0.11", default-features = false, features = ["bindgen", "futures", "macro", "loader"] }
22+
rquickjs = { version = "0.12", default-features = false, features = ["bindgen", "futures", "macro", "loader"] }
2323

2424
# anyhow is only needed for the native CLI entry point, not the hyperlight guest
2525
[target.'cfg(not(hyperlight))'.dependencies]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name = "native_deflate"
99
path = "src/lib.rs"
1010

1111
[dependencies]
12-
rquickjs = { version = "0.11", default-features = false, features = ["bindgen", "futures", "macro", "loader"] }
12+
rquickjs = { version = "0.12", default-features = false, features = ["bindgen", "futures", "macro", "loader"] }
1313
miniz_oxide = { version = "0.9", default-features = false, features = ["with-alloc"] }
1414

1515
[lints.rust]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
unexpected_cfgs = { level = "allow", check-cfg = ['cfg(hyperlight)'] }
88

99
[dependencies]
10-
rquickjs = { version = "0.11", default-features = false, features = ["bindgen", "macro"] }
10+
rquickjs = { version = "0.12", default-features = false, features = ["bindgen", "macro"] }
1111
sha1 = { version = "0.11", default-features = false }
1212
sha2 = { version = "0.11", default-features = false }
1313
digest = { version = "0.11", default-features = false }

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ path = "src/lib.rs"
1010

1111
# No external dependencies — pure byte/string parsing
1212
[dependencies]
13-
rquickjs = { version = "0.11", default-features = false, features = ["bindgen", "futures", "macro", "loader"] }
13+
rquickjs = { version = "0.12", default-features = false, features = ["bindgen", "futures", "macro", "loader"] }
1414

1515
[lints.rust]
1616
unexpected_cfgs = { level = "allow", check-cfg = ['cfg(hyperlight)'] }

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name = "native_image"
99
path = "src/lib.rs"
1010

1111
[dependencies]
12-
rquickjs = { version = "0.11", default-features = false, features = ["bindgen", "futures", "macro", "loader"] }
12+
rquickjs = { version = "0.12", default-features = false, features = ["bindgen", "futures", "macro", "loader"] }
1313

1414
[lints.rust]
1515
unexpected_cfgs = { level = "allow", check-cfg = ['cfg(hyperlight)'] }

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ path = "src/lib.rs"
1010

1111
# No external dependencies — hand-rolled Markdown parser
1212
[dependencies]
13-
rquickjs = { version = "0.11", default-features = false, features = ["bindgen", "futures", "macro", "loader"] }
13+
rquickjs = { version = "0.12", default-features = false, features = ["bindgen", "futures", "macro", "loader"] }
1414

1515
[lints.rust]
1616
unexpected_cfgs = { level = "allow", check-cfg = ['cfg(hyperlight)'] }

0 commit comments

Comments
 (0)