diff --git a/Cargo.lock b/Cargo.lock index 25228dd463c96..509174d6bc8c4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1296,18 +1296,18 @@ dependencies = [ [[package]] name = "bit-set" -version = "0.5.3" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" +checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3" dependencies = [ "bit-vec", ] [[package]] name = "bit-vec" -version = "0.6.3" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" +checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7" [[package]] name = "bitflags" @@ -2759,12 +2759,13 @@ checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" [[package]] name = "fancy-regex" -version = "0.11.0" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2" +checksum = "6e24cb5a94bcae1e5408b0effca5cd7172ea3c5755049c5f3af4cd283a165298" dependencies = [ "bit-set", - "regex", + "regex-automata 0.4.7", + "regex-syntax 0.8.3", ] [[package]] diff --git a/src/kafka-util/Cargo.toml b/src/kafka-util/Cargo.toml index 713a5eb13a244..6933b8c08988e 100644 --- a/src/kafka-util/Cargo.toml +++ b/src/kafka-util/Cargo.toml @@ -19,7 +19,7 @@ base64 = "0.22.0" chrono = { version = "0.4.39", default-features = false, features = ["std"] } clap = { version = "4.5.23", features = ["derive"] } crossbeam = "0.8.2" -fancy-regex = "0.11.0" +fancy-regex = "0.14.0" futures = "0.3.25" mz-avro = { path = "../avro" } mz-ccsr = { path = "../ccsr" } diff --git a/src/mysql-util/Cargo.toml b/src/mysql-util/Cargo.toml index b30254ae4d784..899ea261e024a 100644 --- a/src/mysql-util/Cargo.toml +++ b/src/mysql-util/Cargo.toml @@ -30,7 +30,7 @@ mysql_async = { version = "0.35.1", default-features = false, features = [ prost = { version = "0.13.4", features = ["no-recursion-limit"] } proptest = { version = "1.6.0", default-features = false, features = ["std"] } proptest-derive = { version = "0.5.1", features = ["boxed_union"] } -fancy-regex = "0.11.0" +fancy-regex = "0.14.0" regex = "1.7.0" serde = { version = "1.0.152", features = ["derive"] } serde_json = { version = "1.0.125" } diff --git a/src/workspace-hack/Cargo.toml b/src/workspace-hack/Cargo.toml index 68775a7858667..a72d670ca5c0a 100644 --- a/src/workspace-hack/Cargo.toml +++ b/src/workspace-hack/Cargo.toml @@ -107,7 +107,7 @@ rand = { version = "0.8.5", features = ["small_rng"] } rand_chacha = { version = "0.3.0" } rdkafka-sys = { git = "https://github.com/MaterializeInc/rust-rdkafka.git", features = ["cmake-build", "libz-static", "ssl-vendored", "zstd"] } regex = { version = "1.10.5" } -regex-automata = { version = "0.4.7", default-features = false, features = ["dfa-onepass", "hybrid", "meta", "nfa", "perf", "unicode"] } +regex-automata = { version = "0.4.7", default-features = false, features = ["dfa", "hybrid", "meta", "nfa", "perf", "unicode"] } regex-syntax = { version = "0.8.3" } reqwest-5ef9efb8ec2df382 = { package = "reqwest", version = "0.12.4", default-features = false, features = ["blocking", "charset", "default-tls", "http2", "json", "stream"] } reqwest-a6292c17cd707f01 = { package = "reqwest", version = "0.11.24", features = ["blocking", "json", "multipart", "native-tls-vendored", "stream"] } @@ -242,7 +242,7 @@ rand = { version = "0.8.5", features = ["small_rng"] } rand_chacha = { version = "0.3.0" } rdkafka-sys = { git = "https://github.com/MaterializeInc/rust-rdkafka.git", features = ["cmake-build", "libz-static", "ssl-vendored", "zstd"] } regex = { version = "1.10.5" } -regex-automata = { version = "0.4.7", default-features = false, features = ["dfa-onepass", "hybrid", "meta", "nfa", "perf", "unicode"] } +regex-automata = { version = "0.4.7", default-features = false, features = ["dfa", "hybrid", "meta", "nfa", "perf", "unicode"] } regex-syntax = { version = "0.8.3" } reqwest-5ef9efb8ec2df382 = { package = "reqwest", version = "0.12.4", default-features = false, features = ["blocking", "charset", "default-tls", "http2", "json", "stream"] } reqwest-a6292c17cd707f01 = { package = "reqwest", version = "0.11.24", features = ["blocking", "json", "multipart", "native-tls-vendored", "stream"] }