-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 923 Bytes
/
Cargo.toml
File metadata and controls
36 lines (32 loc) · 923 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
## Hyperlight Analysis Host
##
## Host-side library with NAPI bindings for the analysis guest.
## Embeds the guest binary and provides JavaScript/TypeScript API.
[package]
name = "hyperlight-analysis"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
description = "Hyperlight-based code analysis guest with NAPI bindings"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
hyperlight-host = { workspace = true }
napi = { version = "3", features = ["async", "napi6"] }
napi-derive = "2"
sha2 = "0.11"
hex = "0.4"
base64 = "0.22"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
tokio = { version = "1", features = ["rt-multi-thread", "sync"] }
[build-dependencies]
cargo-hyperlight = "0.1.7"
napi-build = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.11"
hex = "0.4"