Skip to content

Commit 3eec4d0

Browse files
One more update to pull in a recent IronRDP fix
1 parent fff9551 commit 3eec4d0

File tree

3 files changed

+31
-31
lines changed

3 files changed

+31
-31
lines changed

Cargo.lock

Lines changed: 17 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@ lto = "thin"
2121
[workspace.dependencies]
2222
# Note: To use a local IronRDP repository as a crate (for example, ironrdp-cliprdr), define the dependency as follows:
2323
# ironrdp-cliprdr = { path = "/path/to/local/IronRDP/crates/ironrdp-cliprdr" }
24-
ironrdp-cliprdr = { git = "https://github.com/Devolutions/IronRDP", rev = "4beab02353c37e2e061d4025d828a5b3e7fbd820" }
25-
ironrdp-connector = { git = "https://github.com/Devolutions/IronRDP", rev = "4beab02353c37e2e061d4025d828a5b3e7fbd820" }
26-
ironrdp-core = { git = "https://github.com/Devolutions/IronRDP", rev = "4beab02353c37e2e061d4025d828a5b3e7fbd820" }
27-
ironrdp-displaycontrol = { git = "https://github.com/Devolutions/IronRDP", rev = "4beab02353c37e2e061d4025d828a5b3e7fbd820" }
28-
ironrdp-dvc = { git = "https://github.com/Devolutions/IronRDP", rev = "4beab02353c37e2e061d4025d828a5b3e7fbd820" }
29-
ironrdp-graphics = { git = "https://github.com/Devolutions/IronRDP", rev = "4beab02353c37e2e061d4025d828a5b3e7fbd820" }
30-
ironrdp-pdu = { git = "https://github.com/Devolutions/IronRDP", rev = "4beab02353c37e2e061d4025d828a5b3e7fbd820" }
31-
ironrdp-rdpdr = { git = "https://github.com/Devolutions/IronRDP", rev = "4beab02353c37e2e061d4025d828a5b3e7fbd820" }
32-
ironrdp-rdpsnd = { git = "https://github.com/Devolutions/IronRDP", rev = "4beab02353c37e2e061d4025d828a5b3e7fbd820" }
33-
ironrdp-session = { git = "https://github.com/Devolutions/IronRDP", rev = "4beab02353c37e2e061d4025d828a5b3e7fbd820" }
34-
ironrdp-svc = { git = "https://github.com/Devolutions/IronRDP", rev = "4beab02353c37e2e061d4025d828a5b3e7fbd820" }
35-
ironrdp-tls = { git = "https://github.com/Devolutions/IronRDP", rev = "4beab02353c37e2e061d4025d828a5b3e7fbd820", features = [
24+
ironrdp-cliprdr = { git = "https://github.com/Devolutions/IronRDP", rev = "a0a3e750c9e4ee9c73b957fbcb26dbc59e57d07d" }
25+
ironrdp-connector = { git = "https://github.com/Devolutions/IronRDP", rev = "a0a3e750c9e4ee9c73b957fbcb26dbc59e57d07d" }
26+
ironrdp-core = { git = "https://github.com/Devolutions/IronRDP", rev = "a0a3e750c9e4ee9c73b957fbcb26dbc59e57d07d" }
27+
ironrdp-displaycontrol = { git = "https://github.com/Devolutions/IronRDP", rev = "a0a3e750c9e4ee9c73b957fbcb26dbc59e57d07d" }
28+
ironrdp-dvc = { git = "https://github.com/Devolutions/IronRDP", rev = "a0a3e750c9e4ee9c73b957fbcb26dbc59e57d07d" }
29+
ironrdp-graphics = { git = "https://github.com/Devolutions/IronRDP", rev = "a0a3e750c9e4ee9c73b957fbcb26dbc59e57d07d" }
30+
ironrdp-pdu = { git = "https://github.com/Devolutions/IronRDP", rev = "a0a3e750c9e4ee9c73b957fbcb26dbc59e57d07d" }
31+
ironrdp-rdpdr = { git = "https://github.com/Devolutions/IronRDP", rev = "a0a3e750c9e4ee9c73b957fbcb26dbc59e57d07d" }
32+
ironrdp-rdpsnd = { git = "https://github.com/Devolutions/IronRDP", rev = "a0a3e750c9e4ee9c73b957fbcb26dbc59e57d07d" }
33+
ironrdp-session = { git = "https://github.com/Devolutions/IronRDP", rev = "a0a3e750c9e4ee9c73b957fbcb26dbc59e57d07d" }
34+
ironrdp-svc = { git = "https://github.com/Devolutions/IronRDP", rev = "a0a3e750c9e4ee9c73b957fbcb26dbc59e57d07d" }
35+
ironrdp-tls = { git = "https://github.com/Devolutions/IronRDP", rev = "a0a3e750c9e4ee9c73b957fbcb26dbc59e57d07d", features = [
3636
"rustls",
3737
] }
38-
ironrdp-tokio = { git = "https://github.com/Devolutions/IronRDP", rev = "4beab02353c37e2e061d4025d828a5b3e7fbd820" }
38+
ironrdp-tokio = { git = "https://github.com/Devolutions/IronRDP", rev = "a0a3e750c9e4ee9c73b957fbcb26dbc59e57d07d" }
3939

lib/srv/desktop/rdp/rdpclient/src/client.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@ impl Client {
667667
event: FastPathInputEvent,
668668
) -> ClientResult<()> {
669669
write_stream
670-
.write_all(&encode_vec(&FastPathInput(vec![event]))?)
670+
.write_all(&encode_vec(&FastPathInput::single(event))?)
671671
.await?;
672672
Ok(())
673673
}

0 commit comments

Comments
 (0)