mirror of
https://github.com/rust-vmm/vhost-device.git
synced 2025-12-29 00:41:19 +00:00
Bumps the vhost-device group with 6 updates: | Package | From | To | | --- | --- | --- | | [nix](https://github.com/nix-rust/nix) | `0.28.0` | `0.29.0` | | [serde](https://github.com/serde-rs/serde) | `1.0.202` | `1.0.203` | | [cfg_aliases](https://github.com/katharostech/cfg_aliases) | `0.1.1` | `0.2.1` | | [clang-sys](https://github.com/KyleMayes/clang-sys) | `1.7.0` | `1.8.0` | | [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.83` | `1.0.84` | | [serde_derive](https://github.com/serde-rs/serde) | `1.0.202` | `1.0.203` | Updates `nix` from 0.28.0 to 0.29.0 - [Changelog](https://github.com/nix-rust/nix/blob/master/CHANGELOG.md) - [Commits](https://github.com/nix-rust/nix/compare/v0.28.0...v0.29.0) Updates `serde` from 1.0.202 to 1.0.203 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.202...v1.0.203) Updates `cfg_aliases` from 0.1.1 to 0.2.1 - [Release notes](https://github.com/katharostech/cfg_aliases/releases) - [Changelog](https://github.com/katharostech/cfg_aliases/blob/master/release.toml) - [Commits](https://github.com/katharostech/cfg_aliases/compare/v0.1.1...v0.2.1) Updates `clang-sys` from 1.7.0 to 1.8.0 - [Release notes](https://github.com/KyleMayes/clang-sys/releases) - [Changelog](https://github.com/KyleMayes/clang-sys/blob/master/CHANGELOG.md) - [Commits](https://github.com/KyleMayes/clang-sys/commits) Updates `proc-macro2` from 1.0.83 to 1.0.84 - [Release notes](https://github.com/dtolnay/proc-macro2/releases) - [Commits](https://github.com/dtolnay/proc-macro2/compare/1.0.83...1.0.84) Updates `serde_derive` from 1.0.202 to 1.0.203 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.202...v1.0.203) --- updated-dependencies: - dependency-name: nix dependency-type: direct:production update-type: version-update:semver-minor dependency-group: vhost-device - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: vhost-device - dependency-name: cfg_aliases dependency-type: indirect update-type: version-update:semver-minor dependency-group: vhost-device - dependency-name: clang-sys dependency-type: indirect update-type: version-update:semver-minor dependency-group: vhost-device - dependency-name: proc-macro2 dependency-type: indirect update-type: version-update:semver-patch dependency-group: vhost-device - dependency-name: serde_derive dependency-type: indirect update-type: version-update:semver-patch dependency-group: vhost-device ... Signed-off-by: dependabot[bot] <support@github.com>
38 lines
1.0 KiB
TOML
38 lines
1.0 KiB
TOML
[package]
|
|
name = "vhost-device-input"
|
|
version = "0.1.0"
|
|
authors = ["Leo Yan <leo.yan@linaro.org>"]
|
|
description = "vhost input backend device"
|
|
repository = "https://github.com/rust-vmm/vhost-device"
|
|
readme = "README.md"
|
|
keywords = ["virtio-input", "vhost-user", "vhost", "virtio", "rust-vmm"]
|
|
categories = ["virtualization"]
|
|
license = "Apache-2.0 OR BSD-3-Clause"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
xen = ["vm-memory/xen", "vhost/xen", "vhost-user-backend/xen"]
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
env_logger = "0.11"
|
|
epoll = "4.3"
|
|
libc = "0.2"
|
|
log = "0.4"
|
|
rand = "0.8.5"
|
|
tempfile = "3.10"
|
|
thiserror = "1.0"
|
|
vhost = { version = "0.11", features = ["vhost-user-backend"] }
|
|
vhost-user-backend = "0.15"
|
|
virtio-bindings = "0.2.2"
|
|
virtio-queue = "0.12"
|
|
vm-memory = "0.14.1"
|
|
vmm-sys-util = "0.12"
|
|
evdev = "0.12"
|
|
nix = { version = "0.29", features = ["ioctl"] }
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.5"
|
|
virtio-queue = { version = "0.12", features = ["test-utils"] }
|
|
vm-memory = { version = "0.14", features = ["backend-mmap", "backend-atomic"] }
|