File: Cargo.toml.orig

package info (click to toggle)
rust-spytrap-adb 0.3.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 684 kB
  • sloc: makefile: 19
file content (44 lines) | stat: -rw-r--r-- 1,411 bytes parent folder | download
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
[package]
name = "spytrap-adb"
version = "0.3.5"
description = "Test a phone for stalkerware using adb and usb debugging to scan for suspicious apps and configuration"
authors = ["kpcyrd <git@rxv.cc>"]
license = "GPL-3.0-or-later"
repository = "https://github.com/spytrap-org/spytrap-adb"
categories = ["command-line-utilities"]
edition = "2024"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[package.metadata.deb]
section = "utils"
priority = "optional"
depends = "$auto, adb"

[dependencies]
anyhow = "1.0.44"
bstr = "1.9.1"
chrono = { version = "0.4.19", default-features = false, features = ["clock"] }
clap = { version = "4", features = ["derive", "env"] }
clap_complete = "4.2.1"
crossterm = { version = "0.29", features = ["event-stream"] }
dirs = "6"
env_logger = "0.11"
forensic-adb = "0.8"
hex = "0.4.3"
indexmap = { version = "2", features = ["serde"] }
log = "0.4.14"
ratatui = "0.29"
regex = "1.5.4"
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls-native-roots", "brotli", "gzip", "deflate", "json"] }
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.95"
serde_yaml = "0.9"
sha2 = "0.10.6"
shell-escape = "0.1.5"
stalkerware-indicators = "0.2"
tokio = { version = "1.26.0", features = ["macros", "rt-multi-thread", "process"] }
tokio-stream = "0.1.12"

[dev-dependencies]
maplit = "1.0.2"