-
Notifications
You must be signed in to change notification settings - Fork 20
/
Cargo.toml
50 lines (46 loc) · 1.22 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
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
authors = [
"Kartik Sharma <[email protected]>",
"Ajeet D'Souza <[email protected]>",
]
description = "Extract partitions from Android OTA files"
categories = ["command-line-utilities", "android"]
edition = "2021"
keywords = ["android", "cli", "terminal"]
license = "MIT"
name = "otadump"
repository = "https://github.com/crazystylus/otadump"
readme = "README.md"
rust-version = "1.68.0"
version = "0.1.2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.69"
bzip2 = { version = "0.4.4", features = ["static"] }
chrono = "0.4.24"
clap = { version = "4.2.1", features = ["derive"] }
color-print = "0.3.4"
console = { version = "0.15.5", features = ["windows-console-colors"] }
hex = "0.4.3"
indicatif = "0.17.3"
memmap2 = "0.7.0"
nom = "7.1.3"
nom-derive = "0.10.1"
prost = "0.11.8"
rayon = "1.7.0"
rust-lzma = { version = "0.6.0", features = ["static"] }
sha2 = "0.10.6"
sync-unsafe-cell = "0.1.0"
tempfile = "3.6.0"
zip = { version = "0.6.6", features = [
"deflate",
"bzip2",
"zstd",
], default-features = false }
[build-dependencies]
prost-build = "0.11.0"
[profile.release]
codegen-units = 1
debug = 0
lto = true
strip = true