1#![forbid(unsafe_code)]
2#![allow(clippy::too_many_arguments)]
3#![allow(unstable_name_collisions)]
4#![allow(deprecated)]
5#![allow(array_into_iter)]
6#![cfg_attr(feature = "fail-on-warnings", deny(warnings))]
7#![cfg_attr(feature = "fail-on-warnings", deny(clippy::all))]
8#![doc(html_root_url = "https://docs.rs/tinkerforge/2.0.20")]
9#![doc(html_logo_url = "https://raw.githubusercontent.com/Tinkerforge/generators/master/rust/logo_small.png")]
10#![doc(html_favicon_url = "https://raw.githubusercontent.com/Tinkerforge/generators/master/rust/logo_small.png")]
11
12#[allow(unused_imports)]
15mod bindings;
16pub use crate::bindings::*;
17pub mod base58;
18pub mod byte_converter;
19pub mod converting_callback_receiver;
20pub mod converting_high_level_callback_receiver;
21pub mod converting_receiver;
22pub mod device;
23pub mod error;
24pub mod ip_connection;
25pub mod low_level_traits;