qemu-display/qemu-rdp/Cargo.toml

24 lines
768 B
TOML
Raw Normal View History

2023-05-30 16:12:44 +00:00
[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 = { path = "../qemu-display" }
tracing.workspace = true
2024-05-23 14:54:14 +00:00
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
2023-05-30 16:12:44 +00:00
keycodemap = { path = "../keycodemap" }
2024-05-23 14:54:14 +00:00
bytes = "1.6"
pixman-sys = "0.1.0"
2023-05-30 16:12:44 +00:00
rustls = { version = "0.21" }
rustls-pemfile = "1.0"
2024-05-23 14:54:14 +00:00
tokio = { version = "1.37", features = ["full"] }
2023-05-30 16:12:44 +00:00
tokio-rustls = "0.24"
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"
ironrdp = { git = "https://github.com/Devolutions/IronRDP", features = ["server", "svc", "cliprdr"] }