1[package] 2name = "virtio-media" 3version = "0.0.6" 4license = "BSD-3-Clause" 5description = "Device support for virtio-media" 6repository = "https://github.com/chromeos/virtio-media" 7authors = ["The ChromiumOS Authors"] 8edition = "2021" 9 10[dependencies] 11anyhow = "1.0.32" 12enumn = "0.1.12" 13libc = "0.2.151" 14log = "0.4.20" 15nix = { version = "0.28", features = ["fs"] } 16thiserror = "1.0.38" 17# Use 64-bit bindings as this is the format used by virtio-media 18v4l2r = { version = "0.0.5", features = ["arch64"] } 19zerocopy = { version = "0.7.31", features = ["derive"] } 20 21[features] 22default = ["simple-device"] 23simple-device = [] 24