25 lines
583 B
TOML
25 lines
583 B
TOML
[workspace]
|
|
members = ["adb_cli", "adb_client", "examples/mdns", "pyadb_client"]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
authors = ["Corentin LIAUD"]
|
|
edition = "2024"
|
|
homepage = "https://github.com/cocool97/adb_client"
|
|
keywords = ["adb", "android", "tcp", "usb"]
|
|
license = "MIT"
|
|
repository = "https://github.com/cocool97/adb_client"
|
|
version = "2.1.18"
|
|
rust-version = "1.85.1"
|
|
|
|
# To build locally when working on a new release
|
|
[patch.crates-io]
|
|
adb_client = { path = "./adb_client" }
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
debug-assertions = false
|
|
lto = "thin"
|
|
opt-level = 'z'
|
|
strip = true
|