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
28 lines
845 B
TOML
28 lines
845 B
TOML
[package]
|
|
name = "ironrdp-acceptor"
|
|
version = "0.8.0"
|
|
readme = "README.md"
|
|
description = "State machines to drive an RDP connection acceptance sequence"
|
|
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
|
|
|
|
[dependencies]
|
|
ironrdp-core = { path = "../ironrdp-core", version = "0.1", features = ["alloc"] } # public
|
|
ironrdp-pdu = { path = "../ironrdp-pdu", version = "0.6" } # public
|
|
ironrdp-svc = { path = "../ironrdp-svc", version = "0.5" } # public
|
|
ironrdp-connector = { path = "../ironrdp-connector", version = "0.8" } # public
|
|
ironrdp-async = { path = "../ironrdp-async", version = "0.8" } # public
|
|
tracing = { version = "0.1", features = ["log"] }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|