-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
44 lines (37 loc) · 1.01 KB
/
Cargo.toml
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
36
37
38
39
40
41
42
43
44
[package]
authors = ["David Flemström <david.flemstrom@gmail.com>"]
description = "A high-level wrapper around the Duktape Javascript/ECMAScript interpreter"
documentation = "https://dflemstr.github.io/duk/duk"
homepage = "https://dflemstr.github.io/duk/duk"
keywords = ["javascript", "js", "ecmascript", "duktape"]
license = "MIT"
name = "duk"
readme = "README.md"
repository = "https://github.com/dflemstr/duk"
version = "0.3.1-alpha.0"
edition = "2018"
[dependencies]
failure = "0.1.8"
[dependencies.duk-sys]
path = "./duk-sys"
version = "0.3.1-alpha.0"
[dependencies.duk-derive]
optional = true
path = "./duk-derive"
version = "0.3.1-alpha.0"
[dependencies.log]
optional = true
version = "0.4.8"
[dependencies.serde]
optional = true
version = "1.0"
[dev-dependencies]
env_logger = "0.7.1"
serde = { version = "1.0", features = ["derive"] }
[features]
debug = ["duk-sys/debug"]
default = ["debug", "logging", "derive"]
logging = ["log"]
spam = ["duk-sys/spam"]
trace = ["duk-sys/trace"]
derive = ["duk-derive", "serde"]