-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (25 loc) · 819 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
[package]
name = "export-signal-desktop"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0"
time = "0.3.28"
rusqlite = { version = "0.29.0", features = ["bundled", "bundled-sqlcipher"] }
json = "0.12.4"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
rayon = "1.8.0"
tokio = { version = "1.32.0", features = ["full"] }
futures = "0.3.28"
chrono = "0.4.31"
pbkdf2 = "0.12.2"
log = "0.4.20"
dirs = "5.0.1"
html-escape = "0.2.13"
clap = { version = "4.4.11", features = ["derive"] }
[dev-dependencies]
pbkdf2 = { version = "0.12", features = ["simple"] }
rand_core = { version = "0.6", features = ["std"] }