[package]
edition = "2021"
rust-version = "1.85"
name = "rsbinder"
version = "0.5.1"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "rsbinder provides crates implemented in pure Rust that make Binder IPC available on both Android and Linux."
homepage = "https://hiking90.github.io/rsbinder-book/"
readme = "README.md"
keywords = [
"android",
"binder",
"aidl",
"linux",
]
license = "Apache-2.0"
repository = "https://github.com/hiking90/rsbinder"
[features]
android_11 = []
android_11_plus = [
"android_11",
"android_12",
"android_13",
"android_14",
"android_16",
]
android_12 = []
android_12_plus = [
"android_12",
"android_13",
"android_14",
"android_16",
]
android_13 = []
android_13_plus = [
"android_13",
"android_14",
"android_16",
]
android_14 = []
android_14_plus = [
"android_14",
"android_16",
]
android_16 = []
android_16_plus = ["android_16"]
async = [
"rsbinder-aidl/async",
"async-trait",
]
default = ["tokio"]
tokio = [
"async",
"tokio/full",
]
[lib]
name = "rsbinder"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
optional = true
[dependencies.downcast-rs]
version = "2.0"
[dependencies.log]
version = "0.4"
[dependencies.pretty_hex]
version = "0.4"
package = "pretty-hex"
[dependencies.rsproperties]
version = "0.3"
[dependencies.rustix]
version = "1.1"
features = [
"process",
"param",
"mm",
]
[dependencies.tokio]
version = "1.49"
optional = true
default-features = false
[dev-dependencies.env_logger]
version = "0.11"
[build-dependencies.rsbinder-aidl]
version = "0.5.1"
features = ["async"]