forked from beer-psi/saekawa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
65 lines (60 loc) · 1.27 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
61
62
63
64
65
[package]
name = "saekawa"
version = "0.4.5"
edition = "2021"
license = "0BSD"
[lib]
crate-type = ["cdylib"]
[profile.release]
strip = true # Automatically strip symbols from the binary.
opt-level = "z" # Optimize for size.
lto = true
codegen-units = 1
panic = "abort"
[dependencies]
aes = "0.8.4"
cbc = "0.1.2"
chrono = "0.4.38"
confy = "0.6.1"
crochet = "0.2.3"
dlopen2 = "0.6.0"
env_logger = { version = "0.11.3", default-features = false }
faster-hex = "0.9.0"
flate2 = "1.0.30"
lightningscanner = "1.0.2"
log = "0.4.21"
num_enum = "0.7.2"
pbkdf2 = "0.12.2"
rand = "0.8.5"
rust-ini = "0.21.0"
serde = { version = "1.0.203", features = ["derive"] }
serde-aux = "4.5.0"
serde_json = "1.0.117"
sha1 = "0.10.6"
sha2 = "0.10.8"
snafu = "0.8.3"
ureq = { version = "2.9.7", features = ["json", "native-tls"] }
url = { version = "2.5.2", features = ["serde"] }
widestring = "1.1.0"
[dependencies.winapi]
version = "0.3.9"
features = [
"minwindef",
"winnt",
"psapi",
"processthreadsapi",
"libloaderapi",
"errhandlingapi",
"winhttp",
"synchapi",
"debugapi",
"wincon",
"heapapi",
"winbase",
"wincrypt",
"softpub",
"wintrust",
]
[build-dependencies]
snafu = "0.8.3"
vergen = { version = "8.3.1", features = ["build", "git", "gitcl"] }