Skip to content

Commit a056cab

Browse files
committed
Add empty hv crate
Signed-off-by: Maksym Pavlenko <pavlenko.maksym@gmail.com>
1 parent efb7cbe commit a056cab

3 files changed

Lines changed: 10 additions & 0 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
[workspace]
22
members = [
3+
"hv",
34
"hv-sys"
45
]

hv/Cargo.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[package]
2+
name = "hv"
3+
version = "0.1.0"
4+
edition = "2018"
5+
description = "High level Rust bidings to Hypervisor Framework"
6+
7+
[dependencies]
8+
hv-sys = { path = "../hv-sys", version = "0.1.0" }

hv/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pub use hv_sys as sys;

0 commit comments

Comments
 (0)