Skip to content

Commit

Permalink
virtio-vsock: changes for v0.1.0 release
Browse files Browse the repository at this point in the history
Signed-off-by: Agache <aagch@amazon.com>
  • Loading branch information
Agache authored and slp committed May 19, 2022
1 parent db63657 commit f6aed2a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions crates/devices/virtio-vsock/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# v0.1.0

This is the first release of the crate.
5 changes: 3 additions & 2 deletions crates/devices/virtio-vsock/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ license = "Apache-2.0 OR BSD-3-Clause"
edition = "2018"

[dependencies]
virtio-queue = { path = "../../virtio-queue" }
# The `path` part gets stripped when publishing the crate.
virtio-queue = { path = "../../virtio-queue", version = ">=0.3.0" }
vm-memory = ">=0.8.0"

[dev-dependencies]
virtio-queue = { path = "../../virtio-queue", features = ["test-utils"] }
virtio-queue = { path = "../../virtio-queue", version = ">=0.3.0", features = ["test-utils"] }
vm-memory = { version = ">=0.8.0", features = ["backend-mmap", "backend-atomic"] }

0 comments on commit f6aed2a

Please sign in to comment.