[package] name = "async-std-linux-video" description = "Linux V4L2 device interfacing with async-std" version = "0.1.1" authors = ["K. "] license = "MIT" readme = "README.md" categories = ["os", "os::linux-apis", "asynchronous"] keywords = ["v4l", "v4l2", "linux", "async", "async-std"] edition = "2021" [dependencies.linux-video-core] path = "../core" version = "0.1.1" default-features = false [dependencies.async-io] version = "1" [dependencies.async-std] version = "1" [dev-dependencies.async-std] version = "1" features = ["attributes"] [dev-dependencies.image] version = "0.24" [features] default = [] full = ["clap", "serde", "drm-fourcc", "dcv-color-primitives"] clap = ["linux-video-core/clap"] serde = ["linux-video-core/serde"] drm-fourcc = ["linux-video-core/drm-fourcc"] dcv-color-primitives = ["linux-video-core/dcv-color-primitives"] thread-safe = ["linux-video-core/thread-safe"] test-vivid = []