mirror of
https://github.com/Devolutions/IronRDP.git
synced 2025-12-23 12:26:46 +00:00
Some checks failed
CI / Check formatting (push) Has been cancelled
CI / Check typos (push) Has been cancelled
Coverage / Coverage Report (push) Has been cancelled
Release crates / Open release PR (push) Has been cancelled
Release crates / Release crates (push) Has been cancelled
CI / Fuzzing (push) Has been cancelled
CI / Web Client (push) Has been cancelled
CI / Checks [linux] (push) Has been cancelled
CI / Checks [macos] (push) Has been cancelled
CI / Checks [windows] (push) Has been cancelled
CI / FFI (push) Has been cancelled
CI / Success (push) Has been cancelled
24 lines
826 B
TOML
24 lines
826 B
TOML
[package]
|
|
name = "ironrdp-rdpdr-native"
|
|
version = "0.5.0"
|
|
readme = "README.md"
|
|
description = "Native RDPDR static channel backend implementations for IronRDP"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
authors.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
|
|
[lib]
|
|
doctest = false
|
|
test = false
|
|
|
|
[target.'cfg(any(target_os = "macos", target_os = "linux"))'.dependencies]
|
|
ironrdp-core = { path = "../ironrdp-core", version = "0.1" }
|
|
ironrdp-pdu = { path = "../ironrdp-pdu", version = "0.6" } # public
|
|
ironrdp-svc = { path = "../ironrdp-svc", version = "0.5" } # public
|
|
ironrdp-rdpdr = { path = "../ironrdp-rdpdr", version = "0.5" } # public
|
|
nix = { version = "0.30", features = ["fs", "dir"] }
|
|
tracing = { version = "0.1", features = ["log"] }
|