chore(release): prepare for publishing (#748)

This commit is contained in:
devolutionsbot 2025-05-27 11:21:56 -04:00 committed by GitHub
parent 5abd9ff8e0
commit aa6777b56a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
41 changed files with 681 additions and 507 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "ironrdp-async"
version = "0.4.0"
version = "0.5.0"
readme = "README.md"
description = "Provides `Future`s wrapping the IronRDP state machines conveniently"
edition.workspace = true
@ -16,9 +16,9 @@ doctest = false
test = false
[dependencies]
ironrdp-connector = { path = "../ironrdp-connector", version = "0.4" } # public
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.4" } # public
ironrdp-pdu = { path = "../ironrdp-pdu", version = "0.5" } # public
tracing = { version = "0.1", features = ["log"] }
bytes = "1" # public

View file

@ -13,7 +13,6 @@ mod session;
use core::future::Future;
use core::pin::Pin;
pub use ironrdp_connector;
use ironrdp_connector::sspi::generator::NetworkRequest;
use ironrdp_connector::ConnectorResult;