Merge branch 'main' into gpio/features

This commit is contained in:
Viresh Kumar 2022-05-09 15:04:09 +05:30 committed by GitHub
commit bfa063d66c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 7 deletions

4
Cargo.lock generated
View File

@ -263,9 +263,9 @@ dependencies = [
[[package]]
name = "proc-macro2"
version = "1.0.37"
version = "1.0.38"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec757218438d5fda206afc041538b2f6d889286160d649a86a24d37e1235afd1"
checksum = "9027b48e9d4c9175fa2218adf3557f91c1137021739951d4932f5f8268ac48aa"
dependencies = [
"unicode-xid",
]

View File

@ -21,7 +21,7 @@ vhost = { version = "0.4", features = ["vhost-user-slave"] }
vhost-user-backend = "0.3"
virtio-bindings = ">=0.1"
virtio-queue = "0.2"
vm-memory = "0.7"
vm-memory = ">=0.7"
vmm-sys-util = "=0.9.0"
[target.'cfg(target_env = "gnu")'.dependencies]
@ -29,4 +29,4 @@ libgpiod = { git = "https://github.com/vireshk/libgpiod" }
[dev-dependencies]
virtio-queue = { version = "0.2", features = ["test-utils"] }
vm-memory = { version = "0.7.0", features = ["backend-mmap", "backend-atomic"] }
vm-memory = { version = ">=0.7.0", features = ["backend-mmap", "backend-atomic"] }

View File

@ -21,9 +21,9 @@ vhost = { version = "0.4", features = ["vhost-user-slave"] }
vhost-user-backend = "0.3"
virtio-bindings = ">=0.1"
virtio-queue = "0.2"
vm-memory = "0.7"
vm-memory = ">=0.7"
vmm-sys-util = "=0.9.0"
[dev-dependencies]
virtio-queue = { version = "0.2", features = ["test-utils"] }
vm-memory = { version = "0.7.0", features = ["backend-mmap", "backend-atomic"] }
vm-memory = { version = ">=0.7.0", features = ["backend-mmap", "backend-atomic"] }

View File

@ -27,4 +27,4 @@ vmm-sys-util = ">=0.9.0"
[dev-dependencies]
virtio-queue = { version = "0.2", features = ["test-utils"] }
vm-memory = { version = "0.7.0", features = ["backend-mmap", "backend-atomic"] }
vm-memory = { version = ">=0.7.0", features = ["backend-mmap", "backend-atomic"] }