mirror of
https://github.com/rust-vmm/vhost-device.git
synced 2025-12-27 15:45:44 +00:00
Having all the workspace crates under the crates/ directory is unnecessary. Rust documentation itself recommends all crates to be in the root directory: https://doc.rust-lang.org/book/ch14-03-cargo-workspaces.html#creating-the-second-package-in-the-workspace I paste the text content here, in case the online page ever changes or becomes unavailable: ## Creating the Second Package in the Workspace Next, let’s create another member package in the workspace and call it add_one. Change the top-level Cargo.toml to specify the add_one path in the members list: Filename: Cargo.toml [workspace] members = [ "adder", "add_one", ] Then generate a new library crate named add_one: $ cargo new add_one --lib Created library `add_one` package Your add directory should now have these directories and files: ├── Cargo.lock ├── Cargo.toml ├── add_one │ ├── Cargo.toml │ └── src │ └── lib.rs ├── adder │ ├── Cargo.toml │ └── src │ └── main.rs └── target Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
36 lines
1.0 KiB
TOML
36 lines
1.0 KiB
TOML
[package]
|
|
name = "vhost-device-vsock"
|
|
version = "0.1.0"
|
|
authors = ["Harshavardhan Unnibhavi <harshanavkis@gmail.com>", "Stefano Garzarella <sgarzare@redhat.com>"]
|
|
description = "A virtio-vsock device using the vhost-user protocol."
|
|
repository = "https://github.com/rust-vmm/vhost-device"
|
|
readme = "README.md"
|
|
keywords = ["vhost", "vsock"]
|
|
license = "Apache-2.0 OR BSD-3-Clause"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
xen = ["vm-memory/xen", "vhost/xen", "vhost-user-backend/xen"]
|
|
|
|
[dependencies]
|
|
byteorder = "1"
|
|
clap = { version = "4.4", features = ["derive"] }
|
|
env_logger = "0.10"
|
|
epoll = "4.3.2"
|
|
log = "0.4"
|
|
thiserror = "1.0"
|
|
vhost = { version = "0.8", features = ["vhost-user-slave"] }
|
|
vhost-user-backend = "0.10"
|
|
virtio-bindings = "0.2.1"
|
|
virtio-queue = "0.9"
|
|
virtio-vsock = "0.3.1"
|
|
vm-memory = "0.12"
|
|
vmm-sys-util = "0.11"
|
|
config = { version = "0.13", default-features = false, features = ["yaml"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_yaml = "0.9"
|
|
|
|
[dev-dependencies]
|
|
virtio-queue = { version = "0.9", features = ["test-utils"] }
|
|
tempfile = "3.6.0"
|