2023-09-26 16:36:27 -05:00
|
|
|
[package]
|
2023-10-18 05:14:24 -05:00
|
|
|
name = "hbxrt"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
default-run = "hbxrt"
|
2023-09-26 16:36:27 -05:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
hbvm.path = "../hbvm"
|
2023-11-23 18:09:15 -06:00
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
nix = { version = "0.27", features = ["mman", "signal"] }
|
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies.windows]
|
|
|
|
version = "0.52"
|
|
|
|
features = [
|
|
|
|
"Win32_Foundation",
|
|
|
|
"Win32_System_Memory",
|
|
|
|
"Win32_System_SystemServices",
|
|
|
|
"Win32_Security",
|
|
|
|
"Win32_Storage_FileSystem",
|
|
|
|
]
|