1[package] 2name = "v4l2r" 3version = "0.0.4" 4authors = ["Alexandre Courbot <[email protected]>"] 5edition = "2021" 6description = "Safe and flexible abstraction over V4L2" 7repository = "https://github.com/Gnurou/v4l2r" 8categories = ["os"] 9keywords = ["v4l2", "video", "linux"] 10license = "MIT" 11 12readme.workspace = true 13 14[dependencies] 15nix = { version = "0.28", features = ["ioctl", "mman", "poll", "fs", "event"] } 16bitflags = "2.4" 17thiserror = "1.0" 18anyhow = "1.0" 19log = "0.4.14" 20enumn = "0.1.6" 21 22[build-dependencies] 23bindgen = "0.69" 24 25# For example programs 26[dev-dependencies] 27ctrlc = "3.1.4" 28clap = "3.2" 29env_logger = "0.10" 30v4l2r-utils = { path = "../utils" } 31