File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " libuv"
3- version = " 2.8 .0"
3+ version = " 2.9 .0"
44description = " A safe rust wrapper for libuv"
55homepage = " https://github.com/bmatcuk/libuv-rs"
66repository = " https://github.com/bmatcuk/libuv-rs"
@@ -20,7 +20,7 @@ maintenance = { status = "actively-developed" }
2020
2121[dependencies ]
2222bitflags = " ~1.2.1"
23- libuv-sys2 = " ~1.47 .0"
23+ libuv-sys2 = " ~1.48 .0"
2424
2525[dev-dependencies ]
2626rand = " ~0.7.3"
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments