-
Notifications
You must be signed in to change notification settings - Fork 32
/
Cargo.toml
53 lines (49 loc) · 1.05 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
[package]
name = "corplink-rs"
version = "0.5.1"
edition = "2021"
[dependencies]
regex = "1.10"
reqwest = { version = "0.11", features = [
"json",
"gzip",
"deflate",
"cookies",
] }
# for debug
# reqwest = { version = "0.11", features = ["json", "gzip", "deflate", "cookies", "socks"] }
tokio = { version = "1.37", features = ["full"] }
futures = "0.3"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
cookie = "0.17"
cookie_store = "0.20"
reqwest_cookie_store = "0.6"
tinytemplate = "1.2"
md5 = "0.7"
sha2 = "0.10"
base32 = "0.4"
base64 = "0.21"
rand = "0.8"
x25519-dalek = { version = "2.0", features = ["static_secrets"] }
httpdate = "1.0"
chrono = "0.4"
cfg-if = "1.0"
# linux privilege check
sudo = "0.6"
# windows privilege check
is_elevated = "0.1"
# windows unix socket
uds_windows = "1.1"
# string_template = "0.2"
# dependency for basic-otp
# basic-otp = "0.1"
hmac-sha1 = "0.1"
byteorder = "1.5"
log = "0.4"
env_logger = "0.10"
libc = "0.2"
terminal_graphics = "0.1.5"
qrcode = "0.14.1"
[build-dependencies]
bindgen = "0.68"