-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (30 loc) · 1017 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
39
[package]
name = "ccd"
version = "0.1.4"
edition = "2021"
authors = ["Kirill Melkozerov <k.melkozerov@gmail.com>"]
license = "MIT"
repository = "https://github.com/1101-1/chrome_cookie_decryptor"
description = """
A windows simple, fast chrome_cookie_decryptor
"""
readme = "README.md"
categories = ["concurrency", "asynchronous"]
keywords = ["chrome", "cookie", "description", "decryptor"]
[profile.release]
opt-level = 'z'
lto = true
codegen-units = 1
panic = 'abort'
[[bin]]
name = "ccd"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
whoami = "1.4.0"
rusqlite = { version = "0.29.0", default-features = false, features = ["bundled"] }
serde_json = "1.0.96"
base64 = "0.21.2"
winapi = { version = "0.3.6", features = ["wingdi", "winnt", "winuser", "dpapi", "winbase"] }
aes-gcm = "0.10.2"
tokio = { version = "1.28.2", features = ["rt", "io-util", "io-std", "macros", "fs", "sync", "rt-multi-thread"] }