diff --git a/Cargo.lock b/Cargo.lock index 6039f10..fc41fcd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -335,12 +335,6 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" -[[package]] -name = "fnv" -version = "1.0.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" - [[package]] name = "getrandom" version = "0.2.11" @@ -360,15 +354,15 @@ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" [[package]] name = "globset" -version = "0.4.13" +version = "0.4.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "759c97c1e17c55525b57192c06a267cda0ac5210b222d6b82189a2338fa1c13d" +checksum = "57da3b9b5b85bd66f31093f8c408b90a74431672542466497dcbdfdc02034be1" dependencies = [ "aho-corasick", "bstr", - "fnv", "log", - "regex", + "regex-automata", + "regex-syntax", ] [[package]] diff --git a/nexlint-lints/Cargo.toml b/nexlint-lints/Cargo.toml index 434591a..dd63ad9 100644 --- a/nexlint-lints/Cargo.toml +++ b/nexlint-lints/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0 OR MIT" anyhow = "1.0.75" camino = "1.1.6" diffy = "0.3" -globset = "0.4.13" +globset = "0.4.14" guppy = "0.17.3" nexlint = { path = "../nexlint" } regex = "1.10.2"