mirror of
https://gitlab.com/marcandre.lureau/qemu-display.git
synced 2024-12-22 13:45:18 +00:00
6ad37b1f61
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
29 lines
761 B
TOML
29 lines
761 B
TOML
[package]
|
|
name = "qemu-rdp"
|
|
version = "0.1.0"
|
|
authors = ["Mihnea Buzatu <mihneabuzatu88@gmail.com>"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
qemu-display.workspace = true
|
|
tracing.workspace = true
|
|
keycodemap.workspace = true
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
|
bytes = "1.6"
|
|
pixman-sys = "0.1.0"
|
|
rustls-pemfile = "2.1"
|
|
tokio = { version = "1.39", features = ["full"] }
|
|
anyhow = "1.0"
|
|
clap = { version = "4.5", features = ["derive", "cargo"] }
|
|
async-trait = "0.1"
|
|
ironrdp = { git = "https://github.com/Devolutions/IronRDP", features = [
|
|
"server",
|
|
"svc",
|
|
"cliprdr",
|
|
"displaycontrol",
|
|
"rdpsnd"
|
|
] }
|
|
futures-util = "0.3"
|