feat: can run qjs

This commit is contained in:
2020-11-07 16:12:21 +08:00
parent 5110732561
commit 56b44d1a8f
60 changed files with 91718 additions and 16 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 }