cameleon_device/
lib.rs

1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
4
5#![recursion_limit = "1024"]
6#![allow(
7    clippy::module_name_repetitions,
8    clippy::similar_names,
9    clippy::missing_errors_doc,
10    clippy::cast_possible_truncation
11)]
12
13#[cfg(feature = "libusb")]
14pub mod u3v;
15
16mod pixel_format;
17
18pub use pixel_format::PixelFormat;