mirror of
https://github.com/Devolutions/IronRDP.git
synced 2025-08-03 22:58:17 +00:00
26 lines
728 B
TOML
26 lines
728 B
TOML
[package]
|
|
name = "ironrdp-async"
|
|
version = "0.5.0"
|
|
readme = "README.md"
|
|
description = "Provides `Future`s wrapping the IronRDP state machines conveniently"
|
|
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-connector = { path = "../ironrdp-connector", version = "0.5" } # public
|
|
ironrdp-core = { path = "../ironrdp-core", version = "0.1", features = ["alloc"] } # public
|
|
ironrdp-pdu = { path = "../ironrdp-pdu", version = "0.5" } # public
|
|
tracing = { version = "0.1", features = ["log"] }
|
|
bytes = "1" # public
|
|
|
|
[lints]
|
|
workspace = true
|