mirror of
https://github.com/rust-vmm/vhost-device.git
synced 2026-02-01 17:50:03 +00:00
Bumps the vhost-device group in /staging with 10 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.11` | | [libc](https://github.com/rust-lang/libc) | `0.2.150` | `0.2.151` | | [anstream](https://github.com/rust-cli/anstyle) | `0.6.4` | `0.6.5` | | [anstyle-parse](https://github.com/rust-cli/anstyle) | `0.2.2` | `0.2.3` | | [anstyle-query](https://github.com/rust-cli/anstyle) | `1.0.0` | `1.0.2` | | [anstyle-wincon](https://github.com/rust-cli/anstyle) | `3.0.1` | `3.0.2` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [rustix](https://github.com/bytecodealliance/rustix) | `0.38.26` | `0.38.28` | | [syn](https://github.com/dtolnay/syn) | `2.0.39` | `2.0.40` | | [winnow](https://github.com/winnow-rs/winnow) | `0.5.19` | `0.5.26` | Updates `clap` from 4.4.10 to 4.4.11 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.11) Updates `libc` from 0.2.150 to 0.2.151 - [Release notes](https://github.com/rust-lang/libc/releases) - [Commits](https://github.com/rust-lang/libc/compare/0.2.150...0.2.151) Updates `anstream` from 0.6.4 to 0.6.5 - [Commits](https://github.com/rust-cli/anstyle/compare/anstream-v0.6.4...anstream-v0.6.5) Updates `anstyle-parse` from 0.2.2 to 0.2.3 - [Commits](https://github.com/rust-cli/anstyle/compare/anstyle-parse-v0.2.2...anstyle-parse-v0.2.3) Updates `anstyle-query` from 1.0.0 to 1.0.2 - [Commits](https://github.com/rust-cli/anstyle/compare/anstyle-query-v1.0.0...anstyle-query-v1.0.2) Updates `anstyle-wincon` from 3.0.1 to 3.0.2 - [Commits](https://github.com/rust-cli/anstyle/compare/anstyle-wincon-v3.0.1...anstyle-wincon-v3.0.2) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `rustix` from 0.38.26 to 0.38.28 - [Release notes](https://github.com/bytecodealliance/rustix/releases) - [Commits](https://github.com/bytecodealliance/rustix/compare/v0.38.26...v0.38.28) Updates `syn` from 2.0.39 to 2.0.40 - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](https://github.com/dtolnay/syn/compare/2.0.39...2.0.40) Updates `winnow` from 0.5.19 to 0.5.26 - [Changelog](https://github.com/winnow-rs/winnow/blob/main/CHANGELOG.md) - [Commits](https://github.com/winnow-rs/winnow/compare/v0.5.19...v0.5.26) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: vhost-device - dependency-name: libc dependency-type: direct:production update-type: version-update:semver-patch dependency-group: vhost-device - dependency-name: anstream dependency-type: indirect update-type: version-update:semver-patch dependency-group: vhost-device - dependency-name: anstyle-parse dependency-type: indirect update-type: version-update:semver-patch dependency-group: vhost-device - dependency-name: anstyle-query dependency-type: indirect update-type: version-update:semver-patch dependency-group: vhost-device - dependency-name: anstyle-wincon dependency-type: indirect update-type: version-update:semver-patch dependency-group: vhost-device - dependency-name: once_cell dependency-type: indirect 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 - dependency-name: syn dependency-type: indirect update-type: version-update:semver-patch dependency-group: vhost-device - dependency-name: winnow dependency-type: indirect update-type: version-update:semver-patch dependency-group: vhost-device ... Signed-off-by: dependabot[bot] <support@github.com>
43 lines
1.3 KiB
TOML
43 lines
1.3 KiB
TOML
[package]
|
|
name = "vhost-device-video"
|
|
version = "0.1.0"
|
|
authors = ["Albert Esteve <aesteve@redhat.com>"]
|
|
description = "A virtio-video device using the vhost-user protocol."
|
|
repository = "https://github.com/rust-vmm/vhost-device"
|
|
readme = "README.md"
|
|
keywords = ["vhost", "video", "virt", "backend"]
|
|
license = "Apache-2.0 OR BSD-3-Clause"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
xen = ["vm-memory/xen", "vhost/xen", "vhost-user-backend/xen"]
|
|
default = ["v4l2-decoder"]
|
|
v4l2-decoder = ["v4l2r"]
|
|
|
|
[dependencies]
|
|
bitflags = "2.3.3"
|
|
clap = { version = "4.4", features = ["derive"] }
|
|
env_logger = "0.10"
|
|
epoll = "4.3"
|
|
num_enum = "0.7"
|
|
log = "0.4"
|
|
libc = "0.2.151"
|
|
thiserror = "1.0"
|
|
futures-executor = { version = "0.3", features = ["thread-pool"] }
|
|
vhost = { version = "0.9", features = ["vhost-user-backend"] }
|
|
vhost-user-backend = "0.11"
|
|
virtio-bindings = "0.2.1"
|
|
virtio-queue = "0.10"
|
|
vm-memory = "0.13.1"
|
|
vmm-sys-util = "0.11"
|
|
v4l2r = { git = "https://github.com/Gnurou/v4l2r", rev = "110fd77", optional = true }
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.5"
|
|
rstest = "0.18.2"
|
|
tempfile = "3.8.1"
|
|
virtio-queue = { version = "0.10", features = ["test-utils"] }
|
|
vm-memory = { version = "0.13.1", features = ["backend-mmap", "backend-atomic"] }
|