mirror of
https://github.com/Devolutions/IronRDP.git
synced 2025-12-23 12:26:46 +00:00
Some checks are pending
CI / Check formatting (push) Waiting to run
CI / Check typos (push) Waiting to run
CI / Checks [linux] (push) Blocked by required conditions
CI / Checks [macos] (push) Blocked by required conditions
CI / Checks [windows] (push) Blocked by required conditions
CI / Fuzzing (push) Blocked by required conditions
CI / Web Client (push) Blocked by required conditions
CI / FFI (push) Blocked by required conditions
CI / Success (push) Blocked by required conditions
Coverage / Coverage Report (push) Waiting to run
Release crates / Open release PR (push) Waiting to run
Release crates / Release crates (push) Waiting to run
This fixes build issues with some dependencies.
32 lines
958 B
TOML
32 lines
958 B
TOML
[package]
|
|
name = "ffi"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "ironrdp"
|
|
crate-type = ["staticlib", "cdylib"]
|
|
doc = false
|
|
test = false
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
diplomat = "0.7"
|
|
diplomat-runtime = "0.7"
|
|
ironrdp = { path = "../crates/ironrdp", features = ["session", "connector", "dvc", "svc", "rdpdr", "rdpsnd", "graphics", "input", "cliprdr", "displaycontrol"] }
|
|
ironrdp-cliprdr-native.path = "../crates/ironrdp-cliprdr-native"
|
|
ironrdp-dvc-pipe-proxy.path = "../crates/ironrdp-dvc-pipe-proxy"
|
|
ironrdp-core = { path = "../crates/ironrdp-core", features = ["alloc"] }
|
|
ironrdp-rdcleanpath.path = "../crates/ironrdp-rdcleanpath"
|
|
sspi = { version = "0.18", features = ["network_client"] }
|
|
thiserror = "2"
|
|
tracing = { version = "0.1", features = ["log"] }
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
anyhow = "1.0"
|
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
|
embed-resource = "3.0"
|
|
|
|
[lints]
|
|
workspace = true
|