diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2022-03-08 22:00:17 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-08 22:00:17 +0530 |
commit | 61fbecfd5baaa8038a6e9c49ad50d00ce54ab186 (patch) | |
tree | 0b8997095d369b6895df92ed2f44d84e084ff671 | |
parent | e166d7eed0e2ccda15e19eda016f9a188c4e1dbd (diff) |
chore: update regex to 1.5.5 (#13875)
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | cli/Cargo.toml | 4 | ||||
-rw-r--r-- | runtime/Cargo.toml | 2 | ||||
-rw-r--r-- | test_util/Cargo.toml | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/Cargo.lock b/Cargo.lock index 9d203bafc..b10c2cc18 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3128,9 +3128,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.5.4" +version = "1.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461" +checksum = "1a11647b6b25ff05a515cb92c365cec08801e83423a235b51e231e1808747286" dependencies = [ "aho-corasick", "memchr", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 2cd4cc10c..7286d91e0 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -36,7 +36,7 @@ deno_web = { version = "0.70.0", path = "../ext/web" } deno_webgpu = { version = "0.40.0", path = "../ext/webgpu" } deno_websocket = { version = "0.44.0", path = "../ext/websocket" } deno_webstorage = { version = "0.34.0", path = "../ext/webstorage" } -regex = "=1.5.4" +regex = "=1.5.5" serde = { version = "=1.0.133", features = ["derive"] } zstd = '=0.9.2' @@ -80,7 +80,7 @@ once_cell = "=1.9.0" percent-encoding = "=2.1.0" pin-project = "=1.0.8" rand = { version = "=0.8.4", features = ["small_rng"] } -regex = "=1.5.4" +regex = "=1.5.5" ring = "=0.16.20" rustyline = { version = "=9.1.2", default-features = false } rustyline-derive = "=0.6.0" diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index f34371d42..009e6a35a 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -74,7 +74,7 @@ lzzzz = '=0.8.0' netif = "0.1.3" notify = "=5.0.0-pre.12" once_cell = "=1.9.0" -regex = "1.5.4" +regex = "1.5.5" ring = "0.16.20" serde = { version = "1.0.129", features = ["derive"] } signal-hook-registry = "1.4.0" diff --git a/test_util/Cargo.toml b/test_util/Cargo.toml index 253604808..9567e68a4 100644 --- a/test_util/Cargo.toml +++ b/test_util/Cargo.toml @@ -20,7 +20,7 @@ futures = "0.3.21" hyper = { version = "0.14.12", features = ["server", "http1", "http2", "runtime"] } lazy_static = "1.4.0" os_pipe = "0.9.2" -regex = "1.5.4" +regex = "1.5.5" rustls-pemfile = "0.2.1" serde = { version = "1.0.126", features = ["derive"] } serde_json = "1.0.65" |