Skip to content

Commit

Permalink
upgrade to libuv v1.48.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bmatcuk committed Feb 8, 2024
1 parent d76612b commit df3f9e1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libuv"
version = "2.8.0"
version = "2.9.0"
description = "A safe rust wrapper for libuv"
homepage = "https://github.com/bmatcuk/libuv-rs"
repository = "https://github.com/bmatcuk/libuv-rs"
Expand All @@ -20,7 +20,7 @@ maintenance = { status = "actively-developed" }

[dependencies]
bitflags = "~1.2.1"
libuv-sys2 = "~1.47.0"
libuv-sys2 = "~1.48.0"

[dev-dependencies]
rand = "~0.7.3"
Expand Down
4 changes: 4 additions & 0 deletions src/handles/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,10 @@ bitflags! {
/// Hide the subprocess GUI window that would normally be created. This option is only
/// meaningful on Windows systems. On Unix it is silently ignored.
const WINDOWS_HIDE_GUI = uv::uv_process_flags_UV_PROCESS_WINDOWS_HIDE_GUI as _;

/// On Windows, if the path to the program to execute has a directory component, search for
/// the exact file name before trying variants with extensions like '.exe' or '.cmd'.
const WINDOWS_FILE_PATH_EXACT_NAME = uv::uv_process_flags_UV_PROCESS_WINDOWS_FILE_PATH_EXACT_NAME as _;
}
}

Expand Down

0 comments on commit df3f9e1

Please sign in to comment.