diff --git a/Cargo.toml b/Cargo.toml index f4bf566..66a3ec0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,6 @@ resolver = "2" members = [ - "crates/vhost", - "crates/vhost-user-backend", + "vhost", + "vhost-user-backend", ] diff --git a/crates/vhost-user-backend/CHANGELOG.md b/vhost-user-backend/CHANGELOG.md similarity index 100% rename from crates/vhost-user-backend/CHANGELOG.md rename to vhost-user-backend/CHANGELOG.md diff --git a/crates/vhost-user-backend/Cargo.toml b/vhost-user-backend/Cargo.toml similarity index 100% rename from crates/vhost-user-backend/Cargo.toml rename to vhost-user-backend/Cargo.toml diff --git a/crates/vhost-user-backend/README.md b/vhost-user-backend/README.md similarity index 100% rename from crates/vhost-user-backend/README.md rename to vhost-user-backend/README.md diff --git a/crates/vhost-user-backend/src/backend.rs b/vhost-user-backend/src/backend.rs similarity index 100% rename from crates/vhost-user-backend/src/backend.rs rename to vhost-user-backend/src/backend.rs diff --git a/crates/vhost-user-backend/src/event_loop.rs b/vhost-user-backend/src/event_loop.rs similarity index 100% rename from crates/vhost-user-backend/src/event_loop.rs rename to vhost-user-backend/src/event_loop.rs diff --git a/crates/vhost-user-backend/src/handler.rs b/vhost-user-backend/src/handler.rs similarity index 100% rename from crates/vhost-user-backend/src/handler.rs rename to vhost-user-backend/src/handler.rs diff --git a/crates/vhost-user-backend/src/lib.rs b/vhost-user-backend/src/lib.rs similarity index 100% rename from crates/vhost-user-backend/src/lib.rs rename to vhost-user-backend/src/lib.rs diff --git a/crates/vhost-user-backend/src/vring.rs b/vhost-user-backend/src/vring.rs similarity index 100% rename from crates/vhost-user-backend/src/vring.rs rename to vhost-user-backend/src/vring.rs diff --git a/crates/vhost-user-backend/tests/vhost-user-server.rs b/vhost-user-backend/tests/vhost-user-server.rs similarity index 100% rename from crates/vhost-user-backend/tests/vhost-user-server.rs rename to vhost-user-backend/tests/vhost-user-server.rs diff --git a/crates/vhost/CHANGELOG.md b/vhost/CHANGELOG.md similarity index 100% rename from crates/vhost/CHANGELOG.md rename to vhost/CHANGELOG.md diff --git a/crates/vhost/Cargo.toml b/vhost/Cargo.toml similarity index 100% rename from crates/vhost/Cargo.toml rename to vhost/Cargo.toml diff --git a/crates/vhost/README.md b/vhost/README.md similarity index 100% rename from crates/vhost/README.md rename to vhost/README.md diff --git a/crates/vhost/docs/vhost_architecture.drawio b/vhost/docs/vhost_architecture.drawio similarity index 100% rename from crates/vhost/docs/vhost_architecture.drawio rename to vhost/docs/vhost_architecture.drawio diff --git a/crates/vhost/docs/vhost_architecture.png b/vhost/docs/vhost_architecture.png similarity index 100% rename from crates/vhost/docs/vhost_architecture.png rename to vhost/docs/vhost_architecture.png diff --git a/crates/vhost/src/backend.rs b/vhost/src/backend.rs similarity index 100% rename from crates/vhost/src/backend.rs rename to vhost/src/backend.rs diff --git a/crates/vhost/src/lib.rs b/vhost/src/lib.rs similarity index 100% rename from crates/vhost/src/lib.rs rename to vhost/src/lib.rs diff --git a/crates/vhost/src/net.rs b/vhost/src/net.rs similarity index 100% rename from crates/vhost/src/net.rs rename to vhost/src/net.rs diff --git a/crates/vhost/src/vdpa.rs b/vhost/src/vdpa.rs similarity index 100% rename from crates/vhost/src/vdpa.rs rename to vhost/src/vdpa.rs diff --git a/crates/vhost/src/vhost_kern/mod.rs b/vhost/src/vhost_kern/mod.rs similarity index 100% rename from crates/vhost/src/vhost_kern/mod.rs rename to vhost/src/vhost_kern/mod.rs diff --git a/crates/vhost/src/vhost_kern/net.rs b/vhost/src/vhost_kern/net.rs similarity index 100% rename from crates/vhost/src/vhost_kern/net.rs rename to vhost/src/vhost_kern/net.rs diff --git a/crates/vhost/src/vhost_kern/vdpa.rs b/vhost/src/vhost_kern/vdpa.rs similarity index 100% rename from crates/vhost/src/vhost_kern/vdpa.rs rename to vhost/src/vhost_kern/vdpa.rs diff --git a/crates/vhost/src/vhost_kern/vhost_binding.rs b/vhost/src/vhost_kern/vhost_binding.rs similarity index 100% rename from crates/vhost/src/vhost_kern/vhost_binding.rs rename to vhost/src/vhost_kern/vhost_binding.rs diff --git a/crates/vhost/src/vhost_kern/vsock.rs b/vhost/src/vhost_kern/vsock.rs similarity index 100% rename from crates/vhost/src/vhost_kern/vsock.rs rename to vhost/src/vhost_kern/vsock.rs diff --git a/crates/vhost/src/vhost_user/backend.rs b/vhost/src/vhost_user/backend.rs similarity index 100% rename from crates/vhost/src/vhost_user/backend.rs rename to vhost/src/vhost_user/backend.rs diff --git a/crates/vhost/src/vhost_user/backend_req.rs b/vhost/src/vhost_user/backend_req.rs similarity index 100% rename from crates/vhost/src/vhost_user/backend_req.rs rename to vhost/src/vhost_user/backend_req.rs diff --git a/crates/vhost/src/vhost_user/backend_req_handler.rs b/vhost/src/vhost_user/backend_req_handler.rs similarity index 100% rename from crates/vhost/src/vhost_user/backend_req_handler.rs rename to vhost/src/vhost_user/backend_req_handler.rs diff --git a/crates/vhost/src/vhost_user/connection.rs b/vhost/src/vhost_user/connection.rs similarity index 100% rename from crates/vhost/src/vhost_user/connection.rs rename to vhost/src/vhost_user/connection.rs diff --git a/crates/vhost/src/vhost_user/dummy_backend.rs b/vhost/src/vhost_user/dummy_backend.rs similarity index 100% rename from crates/vhost/src/vhost_user/dummy_backend.rs rename to vhost/src/vhost_user/dummy_backend.rs diff --git a/crates/vhost/src/vhost_user/frontend.rs b/vhost/src/vhost_user/frontend.rs similarity index 100% rename from crates/vhost/src/vhost_user/frontend.rs rename to vhost/src/vhost_user/frontend.rs diff --git a/crates/vhost/src/vhost_user/frontend_req_handler.rs b/vhost/src/vhost_user/frontend_req_handler.rs similarity index 100% rename from crates/vhost/src/vhost_user/frontend_req_handler.rs rename to vhost/src/vhost_user/frontend_req_handler.rs diff --git a/crates/vhost/src/vhost_user/message.rs b/vhost/src/vhost_user/message.rs similarity index 100% rename from crates/vhost/src/vhost_user/message.rs rename to vhost/src/vhost_user/message.rs diff --git a/crates/vhost/src/vhost_user/mod.rs b/vhost/src/vhost_user/mod.rs similarity index 100% rename from crates/vhost/src/vhost_user/mod.rs rename to vhost/src/vhost_user/mod.rs diff --git a/crates/vhost/src/vsock.rs b/vhost/src/vsock.rs similarity index 100% rename from crates/vhost/src/vsock.rs rename to vhost/src/vsock.rs