-
Notifications
You must be signed in to change notification settings - Fork 165
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 1.15 KB
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 1.15 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
[package]
name = "hyperlight-guest"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
readme.workspace = true
description = """
Provides only the essential building blocks for interacting with the host environment, including the VM exit mechanism, abstractions for calling host functions and receiving return values, and the input/output stacks used for guest-host communication.
"""
[dependencies]
anyhow = { version = "1.0.102", default-features = false }
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
hyperlight-common = { workspace = true, default-features = false }
flatbuffers = { version= "25.12.19", default-features = false }
tracing = { version = "0.1.44", default-features = false, features = ["attributes"] }
[target.'cfg(target_arch = "x86_64")'.dependencies]
hyperlight-guest-tracing = { workspace = true, default-features = false, optional = true }
[features]
default = []
trace_guest = ["dep:hyperlight-guest-tracing", "hyperlight-guest-tracing?/trace"]
nanvix-unstable = ["hyperlight-common/nanvix-unstable"]