-
Notifications
You must be signed in to change notification settings - Fork 25
/
Cargo.toml
62 lines (58 loc) · 1.15 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
56
57
58
59
60
61
62
[package]
authors = ["Felix Obenhuber <[email protected]>"]
categories = [
"command-line-utilities",
"development-tools",
]
description = "A adb logcat wrapper and log processor"
homepage = "https://github.com/flxo/rogcat"
keywords = [
"android",
"adb",
"debugging",
"log",
"logcat",
]
license = "MIT"
name = "rogcat"
readme = "README.md"
repository = "https://github.com/flxo/rogcat"
version = "0.4.8-pre"
edition = "2018"
[lib]
name = "rogcat"
path = "src/lib.rs"
[[bin]]
name = "rogcat"
path = "src/main.rs"
[dependencies]
atty = "0.2.11"
bytes = "0.4.12"
clap = "2.33.0"
config = "0.13.3"
crc = "1.8.1"
csv = "1.0.7"
directories = "1.0.2"
failure = "0.1.5"
futures = "0.1.27"
handlebars = "1.1.0"
indicatif = "0.11.0"
lazy_static = "1.3.0"
nom = "7.1.3"
regex = "1.1.6"
serde = { version = "1.0.91", features = ['derive'] }
serde_json = "1.0.39"
term_size = "0.3.1"
time = "0.1.42"
tokio = "0.1.20"
tokio-process = "0.2.3"
tokio-serial = "3.2.0"
toml = "0.5.1"
url = "1.7.2"
which = "2.0.1"
zip = "0.5.2"
termcolor = "1.0.4"
tokio-signal = "0.2.7"
itertools = "0.13.0"
[target.'cfg(target_os = "linux")'.dependencies]
tokio-socketcan = "0.1.3"