forked from EFForg/apkeep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (34 loc) · 983 Bytes
/
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
[package]
name = "apkeep"
version = "0.17.0"
authors = ["William Budington <[email protected]>"]
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.12", features = ["stream"] }
futures-util = { version = "0.3", features = ["io"] }
regex = "1.11"
clap = { version = "4", features = ["derive"] }
gpapi = "5"
tokio-dl-stream-to-disk = { version = "1", features = ["sha256sum"] }
tempfile = "3"
dirs = "5"
zip = "2"
cryptographic-message-syntax = "0.26"
ring = "0.17"
x509-certificate = "0.23"
simple-error = "0.3"
sha1 = "0.10"
sha2 = "0.10"
base64 = "0.22"
serde_json = "1"
hex = "0.4"
configparser = "3"
serde = { version = "1", features = ["derive"] }
indicatif = "0.17"
[build-dependencies]
clap = { version = "4", features = ["derive"] }