-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
146 lines (119 loc) · 2.57 KB
/
Cargo.toml
File metadata and controls
146 lines (119 loc) · 2.57 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
[workspace]
members = [
"crates/builder",
"crates/launcher",
"crates/mac-launcher",
"crates/shared",
"crates/crypt",
"crates/script-tester",
"crates/gui",
"crates/rdp/rdp",
"crates/rdp/freerdp-sys",
"crates/gui-tester",
"crates/js",
"crates/audio",
"crates/connection",
]
resolver = "3"
[workspace.package]
version = "5.0.0"
edition = "2024"
authors = ["Adolfo Gómez <dkmaster@dkmon.com>"]
license = "BSD-3-Clause"
[workspace.dependencies]
# Utilities
anyhow = "1.0"
thiserror = "2.0"
zeroize = { version = "1.8", features = ["derive"] }
chrono = { version = "0.4.42" }
directories-next = "2.0"
hostname = "0.4.2"
is_executable = "1.0"
num_enum = "0.7.6"
# randomness
rand = "0.10.1"
# Concurrency channels and utilities
flume = { version = "0.12.0", features = ["async"] }
# SSL/TLS
rustls = "0.23.36"
rustls-native-certs = "0.8.3"
# async & async TLS
tokio-rustls = "0.26.4"
tokio = { version = "1.50", features = [
"net",
"io-util",
"rt",
"sync",
"macros",
"time",
"process",
] }
futures = "0.3.31"
async-trait = "0.1.89"
# HTTP client
reqwest = { version = "0.13.1", features = ["json", "rustls", "system-proxy"] }
# Json handling
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Clipboard handling
clipboard-rs = "0.3.1"
# Encoding/Decoding
base64 = "0.22.1"
bzip2 = "0.6.1"
# i18n
gettext = "0.4.0"
rust-embed = "8.9.0"
sys-locale = "0.3.2"
# Graphics/UI
eframe = { version = "0.34.1", features = ["glow", "wgpu"] }
image = { version = "0.25.10", features = ["png"] }
winit = { version = "0.30.13" }
# Sound
cpal = "0.17.2"
# For opening links
open = "5.3"
# Post-quantum cryptography
libcrux-ml-dsa = "0.0.8"
libcrux-ml-kem = "0.0.8"
# key derivation
hkdf = "0.12"
sha2 = "0.10"
aes-gcm = "0.10.3"
# regex
regex = "1.12"
# JavaScript engine
boa_engine = { version = "0.21.0" }
# Logging
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.22", features = [
"env-filter",
"local-time",
] }
tracing-log = "0.2.0"
# Testing
rcgen = "0.14.7"
serial_test = "3.3"
mockito = "1.7"
# Building
bindgen = "0.72"
cc = "1.2"
winres = "0.1.12"
glob = "0.3.3"
# Linux/macos
libc = "0.2.183"
# Windows
windows = { version = "0.62.2", features = [
"Win32_Foundation",
"Win32_System_Registry",
"Win32_Security_Cryptography",
"Win32_System_JobObjects",
"Win32_Security",
"Win32_System_Threading",
"Win32_UI_WindowsAndMessaging",
"Win32_Networking_WinSock",
] }
widestring = { version = "1.2" }
# MacOS
objc2 = "0.6.4"
objc2-foundation = "0.3.2"
objc2-app-kit = "0.3.2"