diff --git a/crates/Cargo.lock b/crates/Cargo.lock index 9849dc3..a574011 100644 --- a/crates/Cargo.lock +++ b/crates/Cargo.lock @@ -1434,9 +1434,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.10.6" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619" +checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8" dependencies = [ "aho-corasick", "memchr", @@ -1446,9 +1446,9 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.4.4" +version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b7fa1134405e2ec9353fd416b17f8dacd46c473d7d3fd1cf202706a14eb792a" +checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" dependencies = [ "aho-corasick", "memchr", @@ -1457,9 +1457,9 @@ dependencies = [ [[package]] name = "regex-syntax" -version = "0.8.2" +version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" +checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" [[package]] name = "rustc-demangle" diff --git a/crates/python_extractor/Cargo.toml b/crates/python_extractor/Cargo.toml index 9654206..13873ac 100644 --- a/crates/python_extractor/Cargo.toml +++ b/crates/python_extractor/Cargo.toml @@ -21,7 +21,7 @@ rustpython-ast = { git = "https://github.com/bazeltools/rustpython-parser.git", pretty_env_logger = "0.5.0" log = "0.4.22" encoding_rs = "0.8.34" -regex = "1.10.6" +regex = "1.11.0" [dev-dependencies] tempfile = "3.10.1"