adb_rs/lib.rs
1#[macro_use]
2extern crate log;
3#[macro_use]
4extern crate num_derive;
5
6pub const VERSION: u32 = 0x01000000;
7pub const MAX_DATA: u32 = 0x100000;
8
9pub mod result;
10
11mod message;
12mod utils;
13
14mod client;
15mod sync;
16
17pub mod push;
18pub mod shell;
19
20pub use self::client::{AdbClient, AdbConnection};