From bd228b11f93a3d281f4900a2abdb2507101c59a0 Mon Sep 17 00:00:00 2001 From: yo000 <64189682+yo000@users.noreply.github.com> Date: Sun, 17 Nov 2024 15:20:11 +0100 Subject: [PATCH] Enable quickjs bindgen so bindings built for unsupported targets (#34) --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index af3d3f9..964a569 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] regex = "1.10.4" -rquickjs = {version = "0.6.0", features=["futures", "parallel"]} +rquickjs = {version = "0.6.0", features=["bindgen", "futures", "parallel"]} tokio = { version = "1.37.0", features = ["full", "net", "macros", "rt-multi-thread", "io-std", "io-util", "mio"] } reqwest = "0.12.4" lazy-regex = "3.1.0"