-
-
Notifications
You must be signed in to change notification settings - Fork 603
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (54 loc) · 1.43 KB
/
Cargo.toml
File metadata and controls
60 lines (54 loc) · 1.43 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "boa_runtime"
description = "Example runtime for the Boa JavaScript engine."
keywords = ["javascript", "js", "runtime"]
categories = ["command-line-utilities"]
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
[dependencies]
boa_engine.workspace = true
base64.workspace = true
boa_gc.workspace = true
bytemuck.workspace = true
either = { workspace = true, optional = true }
futures = "0.3.32"
futures-lite.workspace = true
http = { workspace = true, optional = true }
reqwest = { workspace = true, optional = true }
rustc-hash = { workspace = true, features = ["std"] }
comfy-table.workspace = true
serde_json = { workspace = true, optional = true }
url = { workspace = true, optional = true }
[dev-dependencies]
indoc.workspace = true
rstest.workspace = true
test-case.workspace = true
textwrap.workspace = true
temp-env.workspace = true
[lints]
workspace = true
[package.metadata.docs.rs]
all-features = true
[features]
# Default should not add `reqwest` as it is not available on all platforms.
default = [
"boa_engine/float16",
"boa_engine/temporal",
"boa_engine/xsum",
"fetch",
"url",
]
all = ["default", "reqwest-blocking"]
url = ["dep:url"]
fetch = [
"dep:either",
"dep:http",
"dep:serde_json",
"boa_engine/either",
]
reqwest-blocking = ["dep:reqwest", "reqwest/blocking"]
process = []