Skip to content

Commit

Permalink
Use regex-lite instead
Browse files Browse the repository at this point in the history
  • Loading branch information
RossSmyth committed Mar 27, 2024
1 parent 84f6066 commit 1d3e9ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ io-kit-sys = "0.4.0"
mach2 = "0.4.1"

[target."cfg(windows)".dependencies]
regex = "1.5.5"
regex-lite = "0.1"

[target."cfg(windows)".dependencies.winapi]
version = "0.3.9"
Expand Down
2 changes: 1 addition & 1 deletion src/windows/enumerate.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use std::ffi::{CStr, CString};
use std::{mem, ptr};

use regex::Regex;
use regex_lite::Regex;
use winapi::shared::guiddef::*;
use winapi::shared::minwindef::*;
use winapi::shared::winerror::*;
Expand Down

0 comments on commit 1d3e9ce

Please sign in to comment.