-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (34 loc) · 801 Bytes
/
Cargo.toml
File metadata and controls
42 lines (34 loc) · 801 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
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "openworkers-core"
version = "0.13.1"
edition = "2024"
license = "MIT"
[dependencies]
bytes = "1"
tokio = { version = "1", features = ["sync"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1.0"
[features]
default = []
actix = ["dep:actix-web", "dep:tokio-stream"]
hyper = ["dep:hyper", "dep:http-body-util", "dep:tokio-stream"]
deno = ["dep:deno_core"]
wasm = []
[dev-dependencies]
tokio = { version = "1", features = ["rt", "macros"] }
[dependencies.actix-web]
version = "4"
optional = true
[dependencies.tokio-stream]
version = "0.1"
optional = true
[dependencies.deno_core]
version = "0.363.0"
optional = true
[dependencies.hyper]
version = "1"
features = ["server", "http1"]
optional = true
[dependencies.http-body-util]
version = "0.1"
optional = true