forked from rustdesk/rustdesk-server
-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathCargo.toml
69 lines (62 loc) · 1.59 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
66
67
68
69
[package]
name = "hbbs"
version = "1.1.99-47"
authors = ["sctg <[email protected]>", "rustdesk <[email protected]>"]
edition = "2021"
build = "build.rs"
default-run = "hbbs"
[[bin]]
name = "hbbr"
path = "src/hbbr.rs"
[[bin]]
name = "rustdesk-utils"
path = "src/utils.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
hbb_common = { path = "libs/hbb_common" }
serde_derive = "1.0"
serde = "1.0"
serde_json = "1.0"
lazy_static = "1.5"
clap = "2"
rust-ini = "0.18"
minreq = { version = "2.12", features = ["punycode"] }
machine-uid = "0.2"
mac_address = "1.1"
whoami = "1.5"
base64 = "0.22"
axum = { version = "0.5", features = ["headers"] }
sqlx = { version = "0.8", features = [
"runtime-tokio-rustls",
"sqlite",
"macros",
"chrono",
"json",
] }
deadpool = "0.12"
async-trait = "0.1"
async-speed-limit = { git = "https://github.com/open-trade/async-speed-limit" }
uuid = { version = "1.0", features = ["v4"] }
bcrypt = "0.15"
chrono = "0.4"
once_cell = "1.8"
sodiumoxide = "0.2"
tokio-tungstenite = "0.24"
tungstenite = "0.24"
regex = "1.10"
flexi_logger = { version = "0.29", features = [
"async",
"dont_minimize_extra_stacks",
] }
ipnetwork = "0.20"
local-ip-address = "0.6"
dns-lookup = "2.0"
ping = "0.5"
sctgdesk-api-server = { git = "https://github.com/sctg-development/sctgdesk-api-server.git", branch = "main" }
rocket = { version = "0.5", features = ["json", "secrets"] }
num_cpus = "1.16"
[build-dependencies]
hbb_common = { path = "libs/hbb_common" }
[workspace]
members = ["libs/hbb_common"]
exclude = ["ui"]