[package]
edition = "2021"
rust-version = "1.77"
name = "rsproperties"
version = "0.2.3"
authors = ["Jeff Kim <hiking90@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust implementation of Android's property system with cross-platform support, real-time monitoring, and Linux emulation"
homepage = "https://github.com/hiking90/rsproperties"
documentation = "https://docs.rs/rsproperties"
readme = "README.md"
keywords = [
"android",
"properties",
"system",
]
categories = [
"os",
"api-bindings",
]
license = "Apache-2.0"
repository = "https://github.com/hiking90/rsproperties"
[features]
builder = []
default = []
[lib]
name = "rsproperties"
path = "src/lib.rs"
[[example]]
name = "getprop"
path = "examples/getprop.rs"
[[example]]
name = "setprop"
path = "examples/setprop.rs"
[[test]]
name = "android_compatibility_tests"
path = "tests/android_compatibility_tests.rs"
[[test]]
name = "comprehensive_api_tests"
path = "tests/comprehensive_api_tests.rs"
[[test]]
name = "comprehensive_tests"
path = "tests/comprehensive_tests.rs"
[[test]]
name = "debug_tests"
path = "tests/debug_tests.rs"
[[test]]
name = "edge_case_tests"
path = "tests/edge_case_tests.rs"
[[test]]
name = "minimal_test"
path = "tests/minimal_test.rs"
[[test]]
name = "production_tests"
path = "tests/production_tests.rs"
[[test]]
name = "property_change_wait_tests"
path = "tests/property_change_wait_tests.rs"
[dependencies.log]
version = "0.4"
[dependencies.pretty-hex]
version = "0.4"
[dependencies.rustix]
version = "1.1"
features = [
"fs",
"mm",
"thread",
"process",
"net",
]
[dependencies.thiserror]
version = "2.0"
[dependencies.zerocopy]
version = "0.8"
[dependencies.zerocopy-derive]
version = "0.8"
[dev-dependencies.android_system_properties]
version = "0.1"
[dev-dependencies.anyhow]
version = "1.0"
[dev-dependencies.clap]
version = "4.0"
features = ["derive"]
[dev-dependencies.env_logger]
version = "0.11"