feat(quickjs): add quickjs

from: https://crates.io/crates/quick-js
This commit is contained in:
2020-07-12 12:53:57 +08:00
parent 2ff135faaa
commit ae0b65aef3
55 changed files with 91533 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
[package]
edition = "2018"
name = "libquickjs-sys"
description = "QuickJS Javascript Engine FFI bindings"
version = "0.7.0"
readme = "README.md"
documentation = "https://docs.rs/quickjs-sys"
repository = "https://github.com/theduke/quickjs-rs"
license = "MIT"
authors = ["Christoph Herzog <chris@theduke.at>"]
categories = ["external-ffi-bindings"]
keywords = ["quickjs"]
build = "build.rs"
[features]
bundled = ["cc", "copy_dir"]
patched = ["bundled"]
default = ["bundled"]
system = ["bindgen"]
[build-dependencies]
bindgen = { version = "0.54.0", optional = true }
cc = { version = "1.0", optional = true }
copy_dir = { version = "0.1.2", optional = true }