1 // Copyright 2019 TiKV Project Authors. Licensed under Apache-2.0. 2 3 #![allow(non_camel_case_types)] 4 #![allow(non_snake_case)] 5 #![allow(non_upper_case_globals)] 6 #[allow(clippy::all)] 7 mod bindings { 8 //include!(env!("BINDING_PATH")); 9 // ANDROID's build system doesn't support environment variables 10 // so we hardcode the output location of the bindings here. 11 include!(concat!(env!("OUT_DIR"), "/grpc-bindings.rs")); 12 } 13 mod grpc_wrap; 14 15 pub use bindings::*; 16 pub use grpc_wrap::*; 17