-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (28 loc) · 844 Bytes
/
Cargo.toml
File metadata and controls
34 lines (28 loc) · 844 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
27
28
29
30
31
32
33
34
[package]
name = "hv"
version = "0.1.2"
edition = "2018"
description = "High level Rust bidings to Hypervisor Framework"
authors = ["Maksym Pavlenko <pavlenko.maksym@gmail.com>", "The Cloud Hypervisor Authors"]
repository = "https://github.com/cloud-hypervisor/hypervisor-framework"
license = "Apache-2.0"
readme = "README.md"
keywords = ["hypervisor", "virtualization", "microvm", "macos", "apple"]
categories = ["os::macos-apis", "api-bindings", "hardware-support"]
[dependencies]
bitflags = "1.2"
hv-sys = { path = "../hv-sys", version = "0.1.1" }
[dev-dependencies]
libc = "0.2"
[features]
hv_10_15 = []
default = ["hv_10_15"]
# Query basic caps
[[example]]
name = "caps"
# Apple Silicon
[[example]]
name = "as"
# See https://docs.rs/about/metadata
[package.metadata.docs.rs]
targets = ["x86_64-apple-darwin", "aarch64-apple-darwin"]