-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (32 loc) · 960 Bytes
/
Cargo.toml
File metadata and controls
34 lines (32 loc) · 960 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
[package]
name = "hyperlight-wasm-sandbox"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
description = "Wasm component sandbox backend for hyperlight-sandbox (Python, JavaScript, etc.)"
[dependencies]
hyperlight-sandbox.workspace = true
hyperlight-wasm.workspace = true
hyperlight-host.workspace = true
hyperlight-common.workspace = true
hyperlight-component-macro.workspace = true
anyhow = "1"
bytes = "1"
getrandom = "0.4"
http = "1"
http-body = "1"
http-body-util = "0.1"
hyper = "1"
log = "0.4"
pin-project = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
wasmtime-wasi-http = "40.0.4"
reqwest = { version = "0.13.2", features = ["blocking"] }
url = "2"
[dev-dependencies]
hyperlight-sandbox = { workspace = true, features = ["test-utils"] }
tempfile = "3"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }