mirror of
https://github.com/rust-vmm/vhost-device.git
synced 2026-01-13 19:30:38 +00:00
Bumps the vhost-device group with 2 updates: [itertools](https://github.com/rust-itertools/itertools) and [rustix](https://github.com/bytecodealliance/rustix). Updates `itertools` from 0.11.0 to 0.12.0 - [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-itertools/itertools/compare/v0.11.0...v0.12.0) Updates `rustix` from 0.38.23 to 0.38.24 - [Release notes](https://github.com/bytecodealliance/rustix/releases) - [Commits](https://github.com/bytecodealliance/rustix/compare/v0.38.23...v0.38.24) --- updated-dependencies: - dependency-name: itertools dependency-type: direct:production update-type: version-update:semver-minor dependency-group: vhost-device - dependency-name: rustix dependency-type: indirect update-type: version-update:semver-patch dependency-group: vhost-device ... Signed-off-by: dependabot[bot] <support@github.com> Downgrading `cc` from v1.0.84 (yanked) to v1.0.83 Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
28 lines
755 B
TOML
28 lines
755 B
TOML
[package]
|
|
name = "vhost-device-scmi"
|
|
version = "0.1.0"
|
|
authors = ["Milan Zamazal <mzamazal@redhat.com>"]
|
|
description = "vhost-user SCMI backend device"
|
|
repository = "https://github.com/rust-vmm/vhost-device"
|
|
readme = "README.md"
|
|
keywords = ["scmi", "vhost", "virt", "backend"]
|
|
license = "Apache-2.0 OR BSD-3-Clause"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.4", features = ["derive"] }
|
|
env_logger = "0.10"
|
|
itertools = "0.12"
|
|
log = "0.4"
|
|
thiserror = "1.0"
|
|
vhost = { version = "0.9", features = ["vhost-user-backend"] }
|
|
vhost-user-backend = "0.11"
|
|
virtio-bindings = "0.2"
|
|
virtio-queue = "0.10"
|
|
vm-memory = "0.13.1"
|
|
vmm-sys-util = "0.11"
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.5"
|
|
virtio-queue = { version = "0.10", features = ["test-utils"] }
|