forked from PinkD/corplink-rs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
45 lines (42 loc) · 1008 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
40
41
42
43
44
45
[package]
name = "corplink-rs"
version = "0.4.1"
edition = "2021"
[dependencies]
regex = "1.9"
reqwest = { version = "0.11", features = ["json", "gzip", "deflate", "cookies"] }
# for debug
# reqwest = { version = "0.11", features = ["json", "gzip", "deflate", "cookies", "socks"] }
tokio = { version = "1.32", 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.0"
# string_template = "0.2"
# dependency for basic-otp
# basic-otp = "0.1"
hmac-sha1 = "0.1"
byteorder = "1.4"
log = "0.4"
env_logger = "0.10"
libc = "0.2"
[build-dependencies]
bindgen = "0.68"