[package]
edition = "2024"
rust-version = "1.85"
name = "pointlock-provider-devicerail"
version = "0.1.10"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pointlock's DeviceRail execution provider (real device / Android automation)."
homepage = "https://github.com/wangweiwei/pointlock"
readme = "README.md"
keywords = [
"pointlock",
"devicerail",
"android",
"automation",
"provider",
]
categories = ["development-tools"]
license = "Apache-2.0"
repository = "https://github.com/wangweiwei/pointlock"
resolver = "2"
[lib]
name = "pointlock_provider_devicerail"
path = "src/lib.rs"
[[test]]
name = "devicerail_provider"
path = "tests/devicerail_provider.rs"
[[test]]
name = "smoke_devicerail_client"
path = "tests/smoke_devicerail_client.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.devicerail-client]
version = "0.3.6"
[dependencies.pointlock-ir]
version = "0.1.10"
[dependencies.pointlock-provider-kit]
version = "0.1.10"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"time",
]
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]