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>
27 lines
934 B
TOML
27 lines
934 B
TOML
[package]
|
|
name = "vhost-user-backend"
|
|
version = "0.11.0"
|
|
authors = ["The Cloud Hypervisor Authors"]
|
|
keywords = ["vhost-user", "virtio"]
|
|
description = "A framework to build vhost-user backend service daemon"
|
|
repository = "https://github.com/rust-vmm/vhost"
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
|
|
[features]
|
|
xen = ["vm-memory/xen", "vhost/xen"]
|
|
|
|
[dependencies]
|
|
libc = "0.2.39"
|
|
log = "0.4.17"
|
|
vhost = { path = "../vhost", version = "0.9", features = ["vhost-user-backend"] }
|
|
virtio-bindings = "0.2.1"
|
|
virtio-queue = "0.10.0"
|
|
vm-memory = { version = "0.13.1", features = ["backend-mmap", "backend-atomic"] }
|
|
vmm-sys-util = "0.11.0"
|
|
|
|
[dev-dependencies]
|
|
nix = { version = "0.27", features = ["fs"] }
|
|
vhost = { path = "../vhost", version = "0.9", features = ["test-utils", "vhost-user-frontend", "vhost-user-backend"] }
|
|
vm-memory = { version = "0.13.1", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }
|
|
tempfile = "3.2.0"
|