mirror of
https://github.com/obhq/obliteration.git
synced 2025-04-02 11:02:08 -04:00
24 lines
571 B
TOML
24 lines
571 B
TOML
[package]
|
|
name = "hv"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
rustc-hash = "2.1.1"
|
|
thiserror = "2.0.11"
|
|
|
|
[target.'cfg(target_arch = "aarch64")'.dependencies]
|
|
aarch64 = { path = "../aarch64" }
|
|
bitfield-struct = "0.10.1"
|
|
|
|
[target.'cfg(target_arch = "x86_64")'.dependencies]
|
|
x86-64 = { path = "../x86-64" }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2.170"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
applevisor-sys = "0.1.3"
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
windows-sys = { version = "0.59.0", features = ["Win32_System_Hypervisor"] }
|