mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-13 03:09:51 +03:00
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
15 lines
371 B
Diff
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 }
|