1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-13 03:09:51 +03:00
aports/community/deno/disable-core-defaults.patch
Jakub Jirutka afedb462f2 community/deno: upgrade to 2.3.1
Note: Change from `cargo:rustc-link-lib=<name>` to
`cargo:rustc-link-lib=dylib=<name>` was not required, just to be consistent
with the rest of the build.rs.

Resolves #15127 (ffi tests are no longer broken on aarch64)

Resolves #17030
2025-05-01 11:27:12 +00:00

15 lines
371 B
Diff

deno_core looks like this:
[features]
default = [
"include_icu_data",
"v8_use_custom_libcxx",
]
include_icu_data = ["deno_core_icudata"]
v8_use_custom_libcxx = ["v8/use_custom_libcxx"]
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -57 +57 @@
-deno_core = { version = "0.344.0" }
+deno_core = { version = "0.344.0", default-features = false }