-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
See rust-vmm/community#136 Signed-off-by: Patrick Roy <[email protected]>
- Loading branch information
1 parent
fa43a39
commit f1e524f
Showing
2 changed files
with
16 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "virtio-queue-ser" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
authors = ["rust-vmm AWS maintainers <[email protected]>"] | ||
description = "Serialization for virtio queue state" | ||
repository = "https://github.com/rust-vmm/vm-virtio" | ||
|
@@ -14,5 +14,8 @@ serde = { version = "1.0.27", features = ["derive"] } | |
versionize = "0.1.6" | ||
versionize_derive = "0.1.3" | ||
# The `path` part gets stripped when publishing the crate. | ||
# We use `=0.7.0` as we maintain a 1:1-relationship between virtio-queue | ||
# and virtio-queue-ser releases. This is to prevent accidental changes | ||
# to the serializer output in a patch release of virtio-queue. | ||
virtio-queue = { path = "../../crates/virtio-queue", version = "=0.7.0" } | ||
vm-memory = "0.10.0" |