-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
60 lines (47 loc) · 1.06 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
51
52
53
54
55
56
57
58
59
60
[package]
name = "credential-extractor"
version = "1.2.3"
authors = ["rumblefrog <[email protected]>"]
edition = "2018"
[lib]
crate-type = ["cdylib"]
[dependencies]
dirs = "3"
thiserror = "1"
serde_json = "1"
der-parser = "6"
rust-crypto = "0.2"
aes = "0.7"
des = "0.7"
base64 = "0.13"
block-modes = "0.8"
ring = "0.16"
sha1 = "0.6.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.rusqlite]
version = "0.25"
features = ["bundled"]
[dependencies.neon]
git = "https://github.com/neon-bindings/neon"
branch = "main"
default-features = false
features = ["napi-6", "event-queue-api", "try-catch-api"]
## Windows dependencies
[target.'cfg(windows)'.dependencies]
windows = "0.19"
aes-gcm = "0.9"
static_vcruntime = "1"
[target.'cfg(target_os = "windows")'.build-dependencies]
windows = "0.19"
## Macos dependencies
[target.'cfg(target_os = "macos")'.dependencies]
security-framework = "2.4"
# Linux dependencies
[target.'cfg(target_os = "linux")'.dependencies]
secret-service = "2"
[profile.release]
opt-level = "z"
lto = "fat"
codegen-units = 1