adb_server_tokio/lib.rs
1#![crate_type = "lib"]
2#![forbid(unsafe_code)]
3#![forbid(missing_debug_implementations)]
4#![forbid(missing_docs)]
5
6//! This is a library for interacting with the ADB server using Tokio.
7//!
8//! # Examples
9//!
10//! Checkout the [AdbServerProxy](proxy::AdbServerProxy) implementation in the proxy module for an example of how to use this library.
11//!
12//! # Features
13//!
14//! - Parse and Serailize ADB Packets
15//! - Proxy ADB Server Connections
16//!
17//! # References
18//!
19//! - [ADB Protocol](https://cs.android.com/android/platform/superproject/main/+/main:packages/modules/adb/protocol.txt)
20//!
21
22mod util;
23mod adb;
24mod proxy;
25
26pub use util::*;
27pub use adb::*;
28pub use proxy::*;