diff --git a/detcore/Cargo.toml b/detcore/Cargo.toml index 3db1328..02298c7 100644 --- a/detcore/Cargo.toml +++ b/detcore/Cargo.toml @@ -44,7 +44,7 @@ rand = { version = "0.8", features = ["small_rng"] } rand_distr = "0.4" rand_pcg = { version = "0.3", features = ["serde1"] } raw-cpuid = "10.6.0" -regex = "1.6.0" +regex = "1.9.2" reverie = { version = "0.1.0", git = "https://github.com/facebookexperimental/reverie.git", branch = "main" } serde = { version = "1.0.176", features = ["derive", "rc"] } serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] } diff --git a/hermit-cli/Cargo.toml b/hermit-cli/Cargo.toml index 294e4fa..d218795 100644 --- a/hermit-cli/Cargo.toml +++ b/hermit-cli/Cargo.toml @@ -24,7 +24,7 @@ once_cell = "1.12" pretty_assertions = { version = "1.2", features = ["alloc"], default-features = false } rand = { version = "0.8", features = ["small_rng"] } rand_pcg = { version = "0.3", features = ["serde1"] } -regex = "1.6.0" +regex = "1.9.2" reverie = { version = "0.1.0", git = "https://github.com/facebookexperimental/reverie.git", branch = "main" } reverie-ptrace = { version = "0.1.0", git = "https://github.com/facebookexperimental/reverie.git", branch = "main" } serde = { version = "1.0.176", features = ["derive", "rc"] } diff --git a/tests/Cargo.toml b/tests/Cargo.toml index 7a80926..abbc166 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -162,5 +162,5 @@ path = "standalone/stacktrace_events.rs" detcore = { version = "0.0.0", path = "../detcore" } libc = "0.2.139" nix = "0.25" -regex = "1.6.0" +regex = "1.9.2" tempfile = "3.5"