Skip to content

Commit df3f9e1

Browse files
committed
upgrade to libuv v1.48.0
1 parent d76612b commit df3f9e1

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libuv"
3-
version = "2.8.0"
3+
version = "2.9.0"
44
description = "A safe rust wrapper for libuv"
55
homepage = "https://github.com/bmatcuk/libuv-rs"
66
repository = "https://github.com/bmatcuk/libuv-rs"
@@ -20,7 +20,7 @@ maintenance = { status = "actively-developed" }
2020

2121
[dependencies]
2222
bitflags = "~1.2.1"
23-
libuv-sys2 = "~1.47.0"
23+
libuv-sys2 = "~1.48.0"
2424

2525
[dev-dependencies]
2626
rand = "~0.7.3"

src/handles/process.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,10 @@ bitflags! {
103103
/// Hide the subprocess GUI window that would normally be created. This option is only
104104
/// meaningful on Windows systems. On Unix it is silently ignored.
105105
const WINDOWS_HIDE_GUI = uv::uv_process_flags_UV_PROCESS_WINDOWS_HIDE_GUI as _;
106+
107+
/// On Windows, if the path to the program to execute has a directory component, search for
108+
/// the exact file name before trying variants with extensions like '.exe' or '.cmd'.
109+
const WINDOWS_FILE_PATH_EXACT_NAME = uv::uv_process_flags_UV_PROCESS_WINDOWS_FILE_PATH_EXACT_NAME as _;
106110
}
107111
}
108112

0 commit comments

Comments
 (0)