-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
33 lines (28 loc) · 911 Bytes
/
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
[package]
name = "bao-virtio-dm"
version = "0.1.0"
edition = "2021"
authors = ["João Peixoto <[email protected]>"]
keywords = ["bao", "virtio", "virtualization", "security"]
description = "Bao VirtIO"
license = "Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"src/api",
"src/vmm",
"src/virtio",
]
[dependencies]
field-offset = "0.3.4"
lazy_static = "1.4.0"
libc = ">=0.2.95"
log = "0.4.17"
seccompiler = "0.2.0"
virtio = { path = "src/virtio" }
api = { path = "src/api" }
vmm = { path = "src/vmm" }
# The [patch] section is used to override dependencies with custom implementations
[patch.crates-io]
vhost = { git = "https://github.com/joaopeixoto13/vhost", branch = "vhost-user-frontend-v0.12.0" }
virtio-queue = { git = "https://github.com/joaopeixoto13/vm-virtio", branch = "virtio-actions" }