mirror of
https://github.com/rust-vmm/vhost-device.git
synced 2026-01-06 18:58:31 +00:00
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:
parent
9ff6bdb701
commit
c2e566c493
@ -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"] }
|
||||
|
||||
@ -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"] }
|
||||
|
||||
@ -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"] }
|
||||
|
||||
@ -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"] }
|
||||
|
||||
Loading…
Reference in New Issue
Block a user