-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathCargo.toml
More file actions
104 lines (95 loc) · 2.92 KB
/
Cargo.toml
File metadata and controls
104 lines (95 loc) · 2.92 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
[package]
name = "devolutions-agent"
version.workspace = true
edition = "2024"
license = "MIT/Apache-2.0"
authors = ["Devolutions Inc. <infos@devolutions.net>"]
description = "Agent companion service for Devolutions Gateway"
build = "build.rs"
publish = false
[lints]
workspace = true
[dependencies]
agent-tunnel-proto = { path = "../crates/agent-tunnel-proto" }
anyhow = "1"
backoff = "0.4"
async-trait = "0.1"
base64 = "0.22"
bytes = "1"
camino = { version = "1.1", features = ["serde1"] }
ceviche = "0.7"
ctrlc = "3.5"
devolutions-agent-shared = { path = "../crates/devolutions-agent-shared" }
devolutions-gateway-task = { path = "../crates/devolutions-gateway-task" }
devolutions-log = { path = "../crates/devolutions-log" }
futures = "0.3"
hex = "0.4"
hostname = "0.4"
http-client-proxy = { path = "../crates/http-client-proxy" }
ipnetwork = "0.20"
parking_lot = "0.12"
quinn = "0.11"
rand = "0.8" # FIXME(@CBenoit): maybe we don't need this crate
rcgen = { version = "0.13", features = ["pem"] }
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls-native-roots", "http2", "socks", "json"] }
rustls = { version = "0.23", default-features = false, features = ["std", "ring"] }
rustls-pemfile = "2.2"
rustls-pki-types = "1"
sha2 = "0.10"
serde_json = "1"
serde = { version = "1", features = ["derive"] }
tap = "1.0"
tokio-rustls = { version = "0.26", default-features = false, features = ["logging", "tls12", "ring"] }
tracing = "0.1"
url = { version = "2.5", features = ["serde"] }
x509-parser = "0.16"
uuid = { version = "1.17", features = ["v4", "serde"] }
[dependencies.ironrdp]
version = "0.14"
default-features = false
features = [
"server", # FIXME(@CBenoit): this is enabling AWS LC unconditionally.
"acceptor",
]
[dependencies.tokio]
version = "1.52"
features = [
"signal",
"net",
"io-util",
"rt",
"rt-multi-thread",
"macros",
"parking_lot",
"fs",
"process",
]
[target.'cfg(windows)'.dependencies]
aws-lc-rs = "1.15"
time = { version = "0.3", features = ["local-offset", "macros", "parsing"] }
devolutions-pedm = { path = "../crates/devolutions-pedm" }
notify-debouncer-mini = "0.6"
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls-native-roots", "http2", "socks"] }
thiserror = "2"
uuid = { version = "1.17", features = ["v4"] }
win-api-wrappers = { path = "../crates/win-api-wrappers" }
[target.'cfg(windows)'.dependencies.windows]
version = "0.61"
features = [
"Win32_Foundation",
"Win32_Storage_FileSystem",
"Win32_Security",
"Win32_System_EventLog",
"Win32_System_SystemInformation",
"Win32_System_Threading",
"Win32_Security_Cryptography",
"Win32_Security_Authorization",
"Win32_System_ApplicationInstallationAndServicing",
"Win32_System_RemoteDesktop",
]
[target.'cfg(windows)'.build-dependencies]
embed-resource = "3.0"
[dev-dependencies]
tempfile = "3"
[target.'cfg(windows)'.dev-dependencies]
expect-test = "1.5"