-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
37 lines (32 loc) · 1.1 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
[package]
authors = ["Christoph Herzog <[email protected]>", "Icemic J <[email protected]>"]
description = "A rusty QuickJS (QuickJS-NG) Javascript engine wrapper, and more."
documentation = "https://docs.rs/quickjs-rusty"
edition = "2021"
keywords = ["quickjs", "javascript", "js", "interpreter", "runtime"]
license = "MIT"
name = "quickjs-rusty"
readme = "README.md"
repository = "https://github.com/Icemic/quickjs-rusty"
version = "0.7.0"
[package.metadata.docs.rs]
features = ["chrono", "bigint", "log"]
[features]
bigint = ["num-bigint", "num-traits"]
default = ["chrono", "serde", "bigint"]
serde = ["thiserror", "dep:serde"]
[dependencies]
anyhow = {version = "1"}
chrono = {version = "0.4.7", optional = true}
libquickjs-ng-sys = {version = "^0.7.1", path = "./libquickjs-sys"}
log = {version = "0.4.8", optional = true}
num-bigint = {version = "0.4.4", optional = true}
num-traits = {version = "0.2.0", optional = true}
serde = {version = "1", features = ["derive"], optional = true}
thiserror = {version = "1", optional = true}
[dev-dependencies]
serde_json = "1"
[workspace]
members = [
"libquickjs-sys",
]