Skip to content

Commit

Permalink
update vm-superio dep for vm-superio-ser v0.1.0
Browse files Browse the repository at this point in the history
vm-superio v0.5.0 is published on crates.io. We have to update
this dependency for vm-superio-ser in order to be able to publish
that crate as well.

Signed-off-by: Laura Loghin <[email protected]>
  • Loading branch information
lauralt authored and alexandruag committed Oct 26, 2021
1 parent d138e0e commit 654ad92
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion crates/vm-superio-ser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,10 @@ edition = "2018"
serde = { version = ">=1.0.27", features = ["derive"] }
versionize = ">=0.1.6"
versionize_derive = ">=0.1.3"
vm-superio = { path = "../vm-superio" }
# Combining both `version` and `path` so that it is possible to publish
# the crate on crates.io. More details here:
# https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#multiple-locations.
# We are using a fixed version of `vm-superio` so that the current version
# of `vm-superio-ser` won't take a newer version of vm-superio, with which
# it may not be compatible.
vm-superio = { version = "=0.5.0", path = "../vm-superio" }

0 comments on commit 654ad92

Please sign in to comment.