[package] edition = "2021" name = "quickjs-rs" description = "QuickJS Javascript engine wrapper" version = "0.5.2" readme = "README.md" documentation = "https://docs.rs/quick-js" repository = "https://gitlab.com/nirvati/risc-v/quickjs-rs" license = "MIT" authors = ["Aaron Dewes ", "Christoph Herzog "] keywords = ["quickjs", "javascript", "js", "engine", "interpreter"] [package.metadata.docs.rs] features = [ "chrono", "bigint", "log" ] [features] default = ["chrono"] patched = ["libquickjs-sys-latest/patched"] bigint = ["num-bigint", "num-traits", "libquickjs-sys-latest/patched"] [dependencies] libquickjs-sys-latest = { version = ">= 0.10.1, < 0.11.0", path = "./libquickjs-sys-latest" } chrono = { version = "0.4.7", optional = true } num-bigint = { version = "0.2.2", optional = true } num-traits = { version = "0.2.0", optional = true } log = { version = "0.4.8", optional = true } [workspace] members = [ "libquickjs-sys-latest", ]