diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2024-09-30 17:10:51 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-30 17:10:51 +0530 |
commit | efb413bdaa0f5be6d9082d397aae1e20a258c85f (patch) | |
tree | b6057112fa6da4590d32e57f197f54cf5188b9c9 | |
parent | 183130ff31d49d4774dc9c6ca1098567b04b1bcf (diff) |
fix: update sui to 0.4 (#25942)
Properly apply offset fixup to `LC_DYLD_EXPORTS_TRIE` load commands.
This should fix Node-API symbols not resolving in RC releases.
Fixes https://github.com/denoland/deno/issues/25879
Fixes https://github.com/denoland/deno/issues/25940
Ref
https://github.com/denoland/sui/commit/2b3a33bb6e1afbb04e2e1d345547e5686894e7f0
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | cli/Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index bdde5d541..b4dafacdd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4174,9 +4174,9 @@ dependencies = [ [[package]] name = "libsui" -version = "0.3.1" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56e39af24eff8df7c8b9980ef56a1a1f4d2e77b34b2d5c0529f108c53ae96a7a" +checksum = "205eca4e7beaad637dcd38fe41292065894ee7f498077cf3c135d5f7252b9f27" dependencies = [ "editpe", "libc", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 32e0651b2..5fb32deb7 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -80,7 +80,7 @@ deno_semver.workspace = true deno_task_shell = "=0.17.0" deno_terminal.workspace = true eszip = "=0.78.0" -libsui = "0.3.1" +libsui = "0.4.0" napi_sym.workspace = true node_resolver.workspace = true |