forked from kodegenix/kg-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (26 loc) · 750 Bytes
/
Cargo.toml
File metadata and controls
31 lines (26 loc) · 750 Bytes
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
[package]
name = "kg-js"
version = "0.8.4"
authors = ["jchlapinski <jakub.chlapinski@kodegenix.pl>", "Wiktor Sikora <wiktorsikora7@gmail.com>"]
description = """
Wrapper for duktape JavaScript engine.
"""
readme = "README.md"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/kodegenix/kg-js"
keywords = ["javascript", "duktape", "bindings", "embeddable", "engine"]
edition = "2021"
build = "build.rs"
[features]
default = ["serde"]
[dependencies]
serde = { version = "1.0.133", features = ["derive"], optional = true }
log = "0.4.14"
bitflags = "1.3.2"
once_cell = "1.9.0"
smallbox = "0.8.1"
[dev-dependencies]
smart-default = "0.6.0"
serde_json = "1.0.74"
[build-dependencies]
cc = { version = "1.0.72", features = ["parallel"] }