-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
32 lines (28 loc) · 1015 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
[package]
name = "frigg"
version = "0.2.0"
description = "Download and decrypt stock firmwares for Samsung devices"
license = "GPL-3.0"
authors = ["Constantin Nickel <constantin.nickel@gmail.com>"]
keywords = ["samsung", "firmware", "download"]
edition = "2021"
rust-version = "1.70"
include = ["src/**/*", "LICENSE", "README.md"]
[dependencies]
aes = "0.8.3"
cbc = "0.1"
base64ct = { version = "1.6", features = ["std"] }
cipher = { version = "0.4.4", features = ["std"] }
generic-array = "0.14.7"
md-5 = "0.10.6"
anyhow = "1.0.82"
clap = { version = "4.5.4", features = ["cargo", "deprecated"] }
indicatif = "0.17.7"
roxmltree = "0.19.0"
xml-rs = "0.8.19"
futures-util = { version = "0.3.29", default-features = false }
reqwest = { version = "0.12.3", features = ["cookies", "stream"] }
tokio = { version = "1.37", features = ["rt-multi-thread", "macros", "fs"] }
tokio-util = { version = "0.7.10", features = ["io"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }