Switch to caret versions

Specify the dependencies with caret versions.

Fixes: rust-vmm/community#131
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
This commit is contained in:
Viresh Kumar 2022-11-15 04:36:05 +05:30 committed by Alex Bennée
parent 9ff6bdb701
commit c2e566c493
4 changed files with 37 additions and 37 deletions

View File

@ -12,21 +12,21 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = ">=3.0", features = ["derive"] }
env_logger = ">=0.9"
libc = ">=0.2.95"
log = ">=0.4.6"
clap = { version = "4.0", features = ["derive"] }
env_logger = "0.9"
libc = "0.2"
log = "0.4"
thiserror = "1.0"
vhost = { version = "0.5", features = ["vhost-user-slave"] }
vhost-user-backend = "0.7.0"
virtio-bindings = ">=0.1"
vhost-user-backend = "0.7"
virtio-bindings = "0.1"
virtio-queue = "0.6"
vm-memory = ">=0.8"
vmm-sys-util = "=0.10.0"
vm-memory = "0.9"
vmm-sys-util = "0.10"
[target.'cfg(target_env = "gnu")'.dependencies]
libgpiod = { git = "https://github.com/vireshk/libgpiod" }
[dev-dependencies]
virtio-queue = { version = "0.6", features = ["test-utils"] }
vm-memory = { version = ">=0.8.0", features = ["backend-mmap", "backend-atomic"] }
vm-memory = { version = "0.9", features = ["backend-mmap", "backend-atomic"] }

View File

@ -12,18 +12,18 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = ">=3.0", features = ["derive"] }
env_logger = ">=0.9"
libc = ">=0.2.95"
log = ">=0.4.6"
clap = { version = "4.0", features = ["derive"] }
env_logger = "0.9"
libc = "0.2"
log = "0.4"
thiserror = "1.0"
vhost = { version = "0.5", features = ["vhost-user-slave"] }
vhost-user-backend = "0.7.0"
virtio-bindings = ">=0.1"
vhost-user-backend = "0.7"
virtio-bindings = "0.1"
virtio-queue = "0.6"
vm-memory = ">=0.8"
vmm-sys-util = "=0.10.0"
vm-memory = "0.9"
vmm-sys-util = "0.10"
[dev-dependencies]
virtio-queue = { version = "0.6", features = ["test-utils"] }
vm-memory = { version = ">=0.8.0", features = ["backend-mmap", "backend-atomic"] }
vm-memory = { version = "0.9", features = ["backend-mmap", "backend-atomic"] }

View File

@ -10,21 +10,21 @@ license = "Apache-2.0 OR BSD-3-Clause"
edition = "2021"
[dependencies]
clap = { version = ">=3.0", features = ["derive"] }
env_logger = ">=0.9"
clap = { version = "4.0", features = ["derive"] }
env_logger = "0.9"
epoll = "4.3"
libc = ">=0.2.95"
log = ">=0.4.6"
rand = ">=0.8.5"
tempfile = "3.2.0"
libc = "0.2"
log = "0.4"
rand = "0.8.5"
tempfile = "3.2"
thiserror = "1.0"
vhost = { version = "0.5", features = ["vhost-user-slave"] }
vhost-user-backend = "0.7.0"
virtio-bindings = ">=0.1"
vhost-user-backend = "0.7"
virtio-bindings = "0.1"
virtio-queue = "0.6"
vm-memory = ">=0.8"
vmm-sys-util = "=0.10.0"
vm-memory = "0.9"
vmm-sys-util = "0.10"
[dev-dependencies]
virtio-queue = { version = "0.6", features = ["test-utils"] }
vm-memory = { version = ">=0.8.0", features = ["backend-mmap", "backend-atomic"] }
vm-memory = { version = "0.9", features = ["backend-mmap", "backend-atomic"] }

View File

@ -11,19 +11,19 @@ edition = "2018"
[dependencies]
byteorder = "1"
clap = { version = ">=3.0", features = ["derive"] }
env_logger = ">=0.9"
clap = { version = "4.0", features = ["derive"] }
env_logger = "0.9"
epoll = "4.3.1"
futures = { version = "0.3", features = ["thread-pool"] }
log = ">=0.4.6"
log = "0.4"
thiserror = "1.0"
vhost = { version = "0.5", features = ["vhost-user-slave"] }
vhost-user-backend = "0.7.0"
virtio-bindings = ">=0.1"
vhost-user-backend = "0.7"
virtio-bindings = "0.1"
virtio-queue = "0.6"
virtio-vsock = "0.1.0"
vm-memory = ">=0.8"
vmm-sys-util = "=0.10.0"
virtio-vsock = "0.1"
vm-memory = "0.9"
vmm-sys-util = "0.10"
[dev-dependencies]
virtio-queue = { version = "0.6", features = ["test-utils"] }