forked from EFForg/apkeep
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (33 loc) · 981 Bytes
/
Cargo.toml
File metadata and controls
35 lines (33 loc) · 981 Bytes
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
[package]
name = "apkeep"
version = "0.13.0"
authors = ["William Budington <bill@eff.org>"]
edition = "2018"
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 = "3", features = ["derive"] }
gpapi = "3"
tokio-dl-stream-to-disk = { version = "0.3", features = ["sha256sum"] }
tempfile = "3"
dirs = "4.0"
zip = "0.6"
cryptographic-message-syntax = "0.18"
openssl = "0.10"
x509-certificate = "0.15"
simple-error = "0.2"
sha-1 = "0.10"
base64 = "0.13"
serde_json = "1"
hex = "0.4"
rpassword = "7.0"
configparser = "3.0"
serde = { version = "1.0", features = ["derive"] }
[build-dependencies]
clap = { version = "3", features = ["derive"] }