2023-05-30 16:12:44 +00:00
|
|
|
[package]
|
|
|
|
name = "qemu-rdp"
|
|
|
|
version = "0.1.0"
|
2024-10-08 08:05:24 +00:00
|
|
|
authors = [
|
|
|
|
"Mihnea Buzatu <mihneabuzatu88@gmail.com>",
|
|
|
|
"Marc-André Lureau <marcandre.lureau@redhat.com>",
|
|
|
|
]
|
2023-05-30 16:12:44 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-07-24 09:41:30 +00:00
|
|
|
qemu-display.workspace = true
|
2024-04-10 08:59:48 +00:00
|
|
|
tracing.workspace = true
|
2024-07-24 09:41:30 +00:00
|
|
|
keycodemap.workspace = true
|
2024-05-23 14:54:14 +00:00
|
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
|
|
|
bytes = "1.6"
|
2024-04-10 09:06:27 +00:00
|
|
|
pixman-sys = "0.1.0"
|
2024-07-23 08:38:39 +00:00
|
|
|
rustls-pemfile = "2.1"
|
2024-07-24 09:41:30 +00:00
|
|
|
tokio = { version = "1.39", features = ["full"] }
|
2023-05-30 16:12:44 +00:00
|
|
|
anyhow = "1.0"
|
2024-05-23 14:54:14 +00:00
|
|
|
clap = { version = "4.5", features = ["derive", "cargo"] }
|
2023-05-30 16:12:44 +00:00
|
|
|
async-trait = "0.1"
|
2024-07-23 08:38:39 +00:00
|
|
|
ironrdp = { git = "https://github.com/Devolutions/IronRDP", features = [
|
2024-10-08 08:00:35 +00:00
|
|
|
"connector",
|
2024-07-23 08:38:39 +00:00
|
|
|
"server",
|
|
|
|
"svc",
|
|
|
|
"cliprdr",
|
2024-07-24 18:28:38 +00:00
|
|
|
"displaycontrol",
|
2024-10-08 08:05:24 +00:00
|
|
|
"rdpsnd",
|
2024-07-23 08:38:39 +00:00
|
|
|
] }
|
2024-07-28 07:47:08 +00:00
|
|
|
futures-util = "0.3"
|
2024-10-08 08:00:35 +00:00
|
|
|
zbus.workspace = true
|
|
|
|
enumflags2 = "0.7.10"
|
2024-11-19 12:31:17 +00:00
|
|
|
dirs = "5.0.1"
|