-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
55 lines (48 loc) · 1.46 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "adborc"
authors = ["Shubham Pawar"]
version = "0.2.0"
edition = "2021"
description = "Orchestrator for a network of distributed Android devices"
license = "Apache-2.0"
homepage = "https://mobinex.io/"
repository = "https://github.com/mobi-nex/adborc.git"
documentation = "https://docs.rs/adborc"
readme = "README.md"
keywords = ["android", "adb", "cli"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[target.'cfg(windows)'.dependencies]
[target.'cfg(unix)'.dependencies]
daemonize = "0.4.1"
[dependencies]
log = { version = "0.4", features = ["release_max_level_info"] }
env_logger = "0.9.0"
lazy_static = "1.4.0"
serde = { version = "1.0.144", features = ["derive"] }
serde_json = "1.0.85"
portpicker = "0.1.1"
socket2 = "0.4.7"
clap = { version = "4.0", features = ["derive"] }
tokio = { version = "1.21.0", features = ["rt-multi-thread", "net", "macros", "io-util", "time"] }
blake2 = "0.10"
snow = { version = "0.9.0", features = ["ring-accelerated"] }
base64 = "0.13.0"
pathsearch = "0.2.0"
clap_mangen = { version = "0.2.2", optional = true }
hostname = "0.3.1"
[dev-dependencies]
serial_test = "0.9.0"
[features]
mangen = ["dep:clap_mangen"]
[profile.release]
lto = true
strip = true
# opt-level = 3
# debug = false
# split-debuginfo = '...' # Platform-specific.
# debug-assertions = false
# overflow-checks = false
# panic = 'unwind'
# incremental = false
# rpath = false