1[package] 2name = "android-binder" 3version = "0.1.0" 4edition = "2021" 5description = "Safe bindings to Android Binder, restricted to the NDK" 6license = "Apache-2.0" 7 8[dependencies] 9binder-ndk-sys = { package = "android-binder-ndk-sys", version = "0.1", path = "./sys" } 10downcast-rs = "1.2.1" 11libc = "0.2.159" 12 13[lints.rust.unexpected_cfgs] 14level = "warn" 15check-cfg = ["cfg(android_vendor)", "cfg(android_ndk)", "cfg(android_vndk)", "cfg(trusty)"] 16