Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonarddeR committed Jul 11, 2024
1 parent f006391 commit a585d41
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# RD Pipe: Windows Remote Desktop Services Dynamic Virtual Channel implementation using named pipes, written in Rust
# cargo.toml for the rd_pipe crate
# Copyright (C) 2022-2023 Leonard de Ruijter <[email protected]>
# Copyright (C) 2022-2024 Leonard de Ruijter <[email protected]>
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
Expand All @@ -15,7 +15,7 @@
[package]
name = "rd_pipe"
description = "Windows Remote Desktop Services Dynamic Virtual Channel implementation using named pipes"
version = "0.1.0"
version = "0.1.1"
authors = ["Leonard de Ruijter <[email protected]>"]
readme = "../readme.md"
repository = "https://github.com/leonardder/rd_pipe-rs"
Expand All @@ -27,12 +27,12 @@ edition = "2021"
crate-type = ["cdylib"]

[dependencies]
lazy_static = "1.4"
parking_lot = "0.12.1"
tracing = "0.1.37"
tracing-appender = "0.2.2"
tracing-subscriber = "0.3.16"
itertools = "0.12.0"
lazy_static = "1.5"
parking_lot = "0.12.3"
tracing = "0.1.40"
tracing-appender = "0.2.3"
tracing-subscriber = "0.3.18"
itertools = "0.13.0"
winreg = { version = "0.52", features = ["transactions"] }

[dependencies.windows]
Expand All @@ -50,7 +50,7 @@ features = [
]

[dependencies.tokio]
version = "1.23.0"
version = "1.38.0"
features = [
"rt-multi-thread",
"net",
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ pub extern "stdcall" fn DllMain(hinst: HMODULE, reason: u32, _reserved: *mut c_v
"DllMain: DLL_PROCESS_ATTACH, logging at level {}",
log_level
);
unsafe { DisableThreadLibraryCalls(hinst) };
unsafe { DisableThreadLibraryCalls(hinst) }.unwrap();
trace!("Disabled thread library calls");
}
DLL_PROCESS_DETACH => {
Expand Down

0 comments on commit a585d41

Please sign in to comment.