-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (35 loc) · 1.1 KB
/
Cargo.toml
File metadata and controls
45 lines (35 loc) · 1.1 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
[package]
name = "openworkers-runtime-boa"
version = "0.10.0"
edition = "2024"
[features]
actix = ["dep:actix-web", "openworkers-core/actix"]
[dependencies]
# Common types
# openworkers-core = { path = "../openworkers-core" }
openworkers-core = { git = "https://github.com/openworkers/openworkers-core", tag = "v0.10.0" }
# Boa JavaScript engine
boa_engine = "0.21"
boa_gc = "0.21"
boa_runtime = { version = "0.21", features = ["reqwest-blocking", "url"] }
# Async runtime
tokio = { version = "1.43", features = ["full"] }
futures = "0.3"
# Logging
log = "0.4"
env_logger = "0.11"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# HTTP
bytes = { version = "1.11", features = ["serde"] }
tokio-stream = "0.1"
# Optional dependencies for examples/integration
actix-web = { version = "4.12.0", features = ["macros"], optional = true }
reqwest = { version = "0.12.24", default-features = false, features = ["blocking", "rustls-tls"] }
http = "1.4.0"
[dev-dependencies]
criterion = { version = "0.5", features = ["async_tokio"] }
[[bench]]
name = "generic_benchmark"
harness = false