-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (48 loc) · 1.21 KB
/
Cargo.toml
File metadata and controls
54 lines (48 loc) · 1.21 KB
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
51
52
53
54
[package]
name = "rusty_hack_browser_data"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0"
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
csv = "1.3"
erased-serde = "0.4"
rusqlite = { version = "0.31", features = ["bundled"] }
time = { version = "0.3", features = ["formatting", "macros"] }
directories = "5.0"
log = "0.4"
env_logger = "0.11"
clap = { version = "4.5", features = ["derive"] }
once_cell = "1.19"
sha1 = "0.10"
hmac = "0.12"
pbkdf2 = "0.12"
aes = "0.8"
aes-gcm = "0.10"
cbc = "0.1"
block-padding = "0.3"
base64 = "0.22"
zip = { version = "0.6", default-features = false, features = ["deflate"] }
walkdir = "2.5"
camino = "1.1"
parking_lot = "0.12"
strum = { version = "0.26", features = ["derive"] }
lazy_static = "1.4"
rayon = "1.10"
des = "0.8"
sha2 = "0.10"
yasna = "0.5"
configparser = "3.1"
rusty-leveldb = "3.0"
[target.'cfg(target_os = "linux")'.dependencies]
secret-service = { version = "5.1", default-features = false, features = ["rt-tokio-crypto-rust"] }
tokio = { version = "1.39", features = ["rt-multi-thread"] }
[dev-dependencies]
assert_fs = "1.1"
tempfile = "3.10"
pretty_assertions = "1.4"
serial_test = "2.0"
[workspace]
members = ["cli"]