forked from pajowu/signal-backup-decode
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
38 lines (35 loc) · 832 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
37
38
[package]
name = "signal-backup-decode"
version = "0.2.3"
authors = ["pajowu <[email protected]>"]
build = "build.rs"
description = "A simple tool to decode signal backups"
readme = "README.md"
license = "GPL-3.0"
repository = "https://github.com/pajowu/signal-backup-decode"
edition = "2018"
[dependencies]
protobuf = "=2.22"
byteorder = "^1"
rust-ini = "^0.16"
clap = "^2.33"
simplelog = "^0.9"
anyhow = "^1.0"
log = "^0.4"
rusqlite = "^0.24"
hkdf = "^0.10"
sha2 = "^0.9"
hmac = "^0.10"
generic-array = "^0.14"
subtle = "^2.2"
indicatif = "^0.15"
infer = "^0.3"
csv = "^1.1"
serde = { version = "^1.0", features = ["derive"] }
chrono = { version = "^0.4", features = ["serde"] }
openssl = "^0.10"
[build-dependencies]
protoc-rust = {version = "^2.22", optional = true}
[features]
default = []
rebuild-protobuf = ["protoc-rust"]