-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (25 loc) · 785 Bytes
/
Cargo.toml
File metadata and controls
26 lines (25 loc) · 785 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
[package]
name = "cargo-hyperlight"
version = "0.1.8"
edition = "2024"
license = "Apache-2.0"
homepage = "https://github.com/hyperlight-dev/cargo-hyperlight"
repository = "https://github.com/hyperlight-dev/cargo-hyperlight"
readme = "README.md"
description = "cargo subcommand to build hyperlight guest binaries"
[dependencies]
anyhow = "1.0"
clap = { version = "4", features = ["derive"] }
console = "0.16"
const_format = "0.2"
glob = "0.3"
libc = "0.2"
object = { version = "0.39", default-features = false, features = ["read", "elf"] }
os_str_bytes = "7.1.1"
regex = "1.12"
rustc-demangle = "0.1"
semver = { version = "1.0", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tempfile = "3"
which = { version = "8", features = ["regex"] }