forked from EFForg/apkeep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (35 loc) · 1.02 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
[package]
name = "apkeep"
version = "0.15.0"
authors = ["William Budington <bill@eff.org>"]
edition = "2021"
license = "MIT"
description = "A command-line tool for downloading APK files from various sources"
homepage = "https://github.com/EFForg/apkeep"
repository = "https://github.com/EFForg/apkeep"
[dependencies]
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.11", features = ["stream"] }
futures-util = { version = "0.3", features = ["io"] }
regex = "1.5"
clap = { version = "4", features = ["derive"] }
gpapi = "4"
tokio-dl-stream-to-disk = { version = "1", features = ["sha256sum"] }
tempfile = "3"
dirs = "4.0"
zip = "0.6"
cryptographic-message-syntax = "0.21"
ring = "0.16"
x509-certificate = "0.18"
simple-error = "0.3"
sha-1 = "0.10"
base64 = "0.21"
serde_json = "1"
hex = "0.4"
rpassword = "7"
configparser = "3.0"
serde = { version = "1.0", features = ["derive"] }
openssl = { version = "0.10", features = ["vendored"] }
indicatif = "0.17"
[build-dependencies]
clap = { version = "4", features = ["derive"] }