-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (21 loc) · 789 Bytes
/
Cargo.toml
File metadata and controls
26 lines (21 loc) · 789 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
[workspace]
resolver = "2"
members = ["src/hyperlight-js", "src/js-host-api", "src/hyperlight-js-runtime"]
[workspace.package]
version = "0.2.0"
edition = "2024"
rust-version = "1.89"
license = "Apache-2.0"
repository = "https://github.com/hyperlight-dev/hyperlight-js"
readme = "README.md"
[workspace.dependencies]
hyperlight-common = { version = "0.14.0", default-features = false }
hyperlight-guest-bin = { version = "0.14.0" }
hyperlight-guest = { version = "0.14.0" }
hyperlight-host = { version = "0.14.0", default-features = false, features = ["executable_heap"] }
hyperlight-js = { version = "0.2.0", path = "src/hyperlight-js" }
hyperlight-js-runtime = { version = "0.2.0", path = "src/hyperlight-js-runtime" }
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"