Add bindgen feature for building quickjs on additional platforms

Closes #126
This commit is contained in:
Tobie Morgan Hitchcock 2022-09-11 23:37:25 +01:00
parent f90eb542bd
commit fcdc9ebb8e
2 changed files with 2 additions and 1 deletions

1
Cargo.lock generated
View file

@ -3073,6 +3073,7 @@ version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24311952af42d8252e399cf48e7d470cb413b1a11a1a5b7fab648cd2edec76c5" checksum = "24311952af42d8252e399cf48e7d470cb413b1a11a1a5b7fab648cd2edec76c5"
dependencies = [ dependencies = [
"bindgen 0.60.1",
"cc", "cc",
] ]

View file

@ -41,7 +41,7 @@ foundationdb = { version = "0.7.0", default-features = false, features = ["fdb-6
fuzzy-matcher = "0.3.7" fuzzy-matcher = "0.3.7"
geo = { version = "0.22.1", features = ["use-serde"] } geo = { version = "0.22.1", features = ["use-serde"] }
indxdb = { version = "0.2.0", optional = true } indxdb = { version = "0.2.0", optional = true }
js = { version = "0.1.7", package = "rquickjs", features = ["classes", "futures", "loader", "macro", "properties", "parallel"], optional = true } js = { version = "0.1.7", package = "rquickjs", features = ["bindgen", "classes", "futures", "loader", "macro", "properties", "parallel"], optional = true }
lexical-sort = "0.3.1" lexical-sort = "0.3.1"
log = "0.4.17" log = "0.4.17"
md-5 = "0.10.1" md-5 = "0.10.1"