[package]
edition = "2021"
name = "uiautomator-cli"
version = "1.0.2"
authors = ["uiautomator contributors"]
build = "build.rs"
include = [
"/src/**",
"/assets/atx-agent",
"/assets/app-uiautomator.apk",
"/assets/app-uiautomator-test.apk",
"/assets/download_atx_agent.sh",
"/assets/download_atx_agent.ps1",
"/assets/README.md",
"/assets/LICENSE",
"/install.sh",
"/install.ps1",
"/verify_setup.sh",
"/test-build.sh",
"/test-build.ps1",
"/Cargo.toml",
"/README.md",
"/CHANGELOG.md",
"/THIRD_PARTY_NOTICES.md",
"/CONTRIBUTING.md",
"/FAQ.md",
"/RELEASE_GUIDE.md",
"/SETUP.md",
"/build.rs",
"/LICENSE*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "命令行工具,用于管理 Android 设备上的 ATX-Agent 服务"
homepage = "https://github.com/iamsevens/uiautomator-rs"
documentation = "https://docs.rs/uiautomator-cli"
readme = "README.md"
keywords = [
"android",
"automation",
"uiautomator",
"cli",
"adb",
]
categories = [
"command-line-utilities",
"development-tools::testing",
]
license = "MIT"
repository = "https://github.com/iamsevens/uiautomator-rs"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "uiautomator_cli"
path = "src/lib.rs"
[[bin]]
name = "uiautomator"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.colored]
version = "2.1"
[dependencies.env_logger]
version = "0.11"
[dependencies.log]
version = "0.4"
[dependencies.md5]
version = "0.7"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.uiautomator]
version = "1.0.2"
features = ["atx-agent-install"]
[dev-dependencies.mockall]
version = "0.12"
[dev-dependencies.proptest]
version = "1.4"
[dev-dependencies.tokio-test]
version = "0.4"
[build-dependencies.md5]
version = "0.7"