-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
59 lines (54 loc) · 1.9 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
# RD Pipe: Windows Remote Desktop Services Dynamic Virtual Channel implementation using named pipes, written in Rust
# cargo.toml for the rd_pipe crate
# Copyright (C) 2022-2024 Leonard de Ruijter <[email protected]>
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https:#www.gnu.org/licenses/>.
[package]
name = "rd_pipe"
description = "Windows Remote Desktop Services Dynamic Virtual Channel implementation using named pipes"
version = "0.1.1"
authors = ["Leonard de Ruijter <[email protected]>"]
readme = "../readme.md"
repository = "https://github.com/leonardder/rd_pipe-rs"
license = "AGPL-3.0-or-later"
categories = ["network-programming", "os::windows-apis"]
edition = "2021"
[lib]
crate-type = ["cdylib"]
[dependencies]
lazy_static = "1.5"
parking_lot = "0.12.3"
tracing = "0.1.40"
tracing-appender = "0.2.3"
tracing-subscriber = "0.3.18"
itertools = "0.13.0"
winreg = { version = "0.52", features = ["transactions"] }
[dependencies.windows]
version = "0.54.0"
features = [
"implement",
"Win32_Foundation",
"Win32_System_SystemServices",
"Win32_System_LibraryLoader",
"Win32_System_Com",
"Win32_System_Com_StructuredStorage",
"Win32_System_Ole",
"Win32_System_Registry",
"Win32_System_RemoteDesktop",
]
[dependencies.tokio]
version = "1.38.0"
features = [
"rt-multi-thread",
"net",
"io-util",
"time"
]