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 1
1
[package ]
2
2
name = " libuv"
3
- version = " 2.8 .0"
3
+ version = " 2.9 .0"
4
4
description = " A safe rust wrapper for libuv"
5
5
homepage = " https://github.com/bmatcuk/libuv-rs"
6
6
repository = " https://github.com/bmatcuk/libuv-rs"
@@ -20,7 +20,7 @@ maintenance = { status = "actively-developed" }
20
20
21
21
[dependencies ]
22
22
bitflags = " ~1.2.1"
23
- libuv-sys2 = " ~1.47 .0"
23
+ libuv-sys2 = " ~1.48 .0"
24
24
25
25
[dev-dependencies ]
26
26
rand = " ~0.7.3"
Original file line number Diff line number Diff line change @@ -103,6 +103,10 @@ bitflags! {
103
103
/// Hide the subprocess GUI window that would normally be created. This option is only
104
104
/// meaningful on Windows systems. On Unix it is silently ignored.
105
105
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 _;
106
110
}
107
111
}
108
112
You can’t perform that action at this time.
0 commit comments