forked from citronneur/rdp-rs
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
61 lines (53 loc) · 1.46 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
[package]
name = "rdp-rs"
version = "0.1.0"
authors = ["Sylvain Peyrefitte <[email protected]>"]
description = "A Pure RUST imlementation of Remote Desktop Protocol"
repository = "https://github.com/citronneur/rdp-rs"
readme = "README.md"
keywords = ["rdp", "security", "network", "windows"]
categories = ["network"]
license = "MIT"
documentation = "https://docs.rs/rdp-rs"
edition = "2021"
[lib]
name = "rdp"
path = "src/lib.rs"
[[bin]]
name = "mstsc-rs"
path = "src/bin/mstsc-rs.rs"
required-features = ["mstsc-rs"]
[features]
# The reason we do this is because doctests don't get cfg(test)
# See: https://github.com/rust-lang/cargo/issues/4669
integration = []
mstsc-rs = ["hex", "winapi", "minifb", "clap", "libc"]
fips = ["boring"]
[dependencies]
byteorder = "^1.3"
bufstream = "0.1"
indexmap = "^1.3"
yasna = { version = "^0.3" }
md4 = "^0.8"
hmac = "^0.7"
md-5 = "^0.8"
num-bigint = "^0.2"
num_enum = "0.4.3"
oid-registry = "0.6.0"
rand = "^0.7"
rc4 = "0.1.0"
ring = "0.16.20"
rsa = "0.6.1"
rustls = { version = "0.20.4", features = ["dangerous_configuration"] }
uuid = "1.10.0"
x509-parser = "0.14.0"
# fips
boring = { version = "4.3.0", features = ["fips"], optional = true }
# for mtsc-rs
hex = { version = "^0.4", optional = true }
winapi = { version = "^0.3", features = ["winsock2"], optional = true }
minifb = { version = "^0.15", optional = true }
clap = { version = "^2.33", optional = true }
libc = { version = "^0.2", optional = true }
[dev-dependencies]
hex = "^0.4"