-
Notifications
You must be signed in to change notification settings - Fork 101
/
Copy pathCargo.toml
53 lines (47 loc) · 1.86 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
[package]
name = "ironrdp-server"
version = "0.5.0"
readme = "README.md"
description = "Extendable skeleton for implementing custom RDP servers"
edition.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
authors.workspace = true
keywords.workspace = true
categories.workspace = true
[lib]
doctest = true
test = false
[features]
default = ["rayon"]
helper = ["dep:x509-cert", "dep:rustls-pemfile"]
rayon = ["dep:rayon"]
# Internal (PRIVATE!) features used to aid testing.
# Don't rely on these whatsoever. They may disappear at any time.
__bench = []
[dependencies]
anyhow = "1.0"
tokio = { version = "1", features = ["net", "macros", "sync", "rt"] } # public
tokio-rustls = "0.26" # public
async-trait = "0.1"
ironrdp-async = { path = "../ironrdp-async", version = "0.4" }
ironrdp-ainput = { path = "../ironrdp-ainput", version = "0.2" }
ironrdp-core = { path = "../ironrdp-core", version = "0.1" }
ironrdp-pdu = { path = "../ironrdp-pdu", version = "0.4" } # public
ironrdp-svc = { path = "../ironrdp-svc", version = "0.3" } # public
ironrdp-cliprdr = { path = "../ironrdp-cliprdr", version = "0.2" } # public
ironrdp-displaycontrol = { path = "../ironrdp-displaycontrol", version = "0.2" } # public
ironrdp-dvc = { path = "../ironrdp-dvc", version = "0.2" } # public
ironrdp-tokio = { path = "../ironrdp-tokio", version = "0.3" }
ironrdp-acceptor = { path = "../ironrdp-acceptor", version = "0.4" } # public
ironrdp-graphics = { path = "../ironrdp-graphics", version = "0.3" } # public
ironrdp-rdpsnd = { path = "../ironrdp-rdpsnd", version = "0.4" } # public
tracing = { version = "0.1", features = ["log"] }
x509-cert = { version = "0.2.5", optional = true }
rustls-pemfile = { version = "2.2.0", optional = true }
rayon = { version = "1.10.0", optional = true }
[dev-dependencies]
tokio = { version = "1", features = ["sync"] }
[lints]
workspace = true