forked from theduke/quickjs-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (31 loc) · 1.11 KB
/
Cargo.toml
File metadata and controls
36 lines (31 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
edition = "2018"
name = "deft-quick-js"
description = "QuickJS Javascript engine wrapper"
version = "0.7.1"
readme = "README.md"
documentation = "https://docs.rs/quick-js"
repository = "https://github.com/theduke/quickjs-rs"
license = "MIT"
authors = ["Christoph Herzog <chris@theduke.at>"]
keywords = ["quickjs", "javascript", "js", "engine", "interpreter"]
[package.metadata.docs.rs]
features = [ "chrono", "bigint", "log" ]
[features]
default = ["chrono"]
#patched = ["libquickjs-sys/patched"]
#bigint = ["num-bigint", "num-traits", "libquickjs-sys/patched"]
bigint = ["num-bigint", "num-traits"]
[dependencies]
#libquickjs-sys = { package = "deft-libquickjs-sys", version = ">= 0.9.0, < 0.10.0", path = "./libquickjs-sys" }
libquickjs-sys = { package = "deft-rquickjs-sys", version = "0.10.1", features = ["bindgen", "logging"]}
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 }
once_cell = "1.2.0"
anyhow = "1.0.86"
#[workspace]
#members = [
# "libquickjs-sys",
#]