forked from hermit-os/uhyve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
executable file
·60 lines (50 loc) · 1.37 KB
/
Cargo.toml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "uhyve"
version = "0.0.20"
authors = ["Stefan Lankes <[email protected]>"]
license = "MIT/Apache-2.0"
keywords = ["hypervisor", "unikernel"]
repository = "https://github.com/hermitcore/uhyve"
categories = ["os"]
readme = "README.md"
description = """
A hypervisor for RustyHermit
"""
exclude = ["/img/*", "./.github/workflows", ".gitignore", ".gitmodules", ".gitattributes"]
[badges]
travis-ci = { repository = "hermitcore/uhyve", branch = "master" }
[dependencies]
log = "0.4"
env_logger = "0.5"
aligned_alloc = "0.1"
elf = "0.0.10"
memmap = "0.7"
lazy_static = "1.4"
clap = "2"
raw-cpuid = "8.0"
bitflags = "1.2"
libc = "0.2"
nix = "0.17"
virtio-bindings = { version = "0.1", features = ["virtio-v4_14_0"]}
mac_address = "1.0.*"
rustc-serialize = "0.3"
byteorder = "1"
nom = "3.2.0"
strum = "0.8.0"
strum_macros = "0.8.0"
gdb-protocol = "0.1"
burst = "0.0.2"
regex = "1"
[target.'cfg(target_os = "macos")'.dependencies.xhypervisor]
version = "0.0.*"
[target.'cfg(target_os = "linux")'.dependencies.kvm-ioctls]
version = "0.5.*"
[target.'cfg(target_os = "linux")'.dependencies.kvm-bindings]
version = "0.*"
[target.'cfg(target_os = "linux")'.dependencies.vmm-sys-util]
version = ">=0.2.1"
[target.'cfg(target_os = "linux")'.dependencies.tun-tap]
version = "0.1.2"
[target.'cfg(target_arch = "x86_64")'.dependencies.x86]
version = "0.*"
default-features = false