From 25427ca261efb81b7ccd049e1b0898488e42fc45 Mon Sep 17 00:00:00 2001 From: Ryan Lopopolo Date: Wed, 24 Feb 2021 07:28:30 -0800 Subject: [PATCH] Update minimum regexp version requirement in spinoso-regexp rust-lang/regex#735 added missing `fmt::Debug` impls for public structs and enums, which `spinoso-regexp` requires to impl `fmt::Debug` on its own iterator types. This change does not use these `fmt::Debug` impls, just updated the minimum dependency version. --- spinoso-regexp/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spinoso-regexp/Cargo.toml b/spinoso-regexp/Cargo.toml index a625707ec1d6..40deaf3cc00c 100644 --- a/spinoso-regexp/Cargo.toml +++ b/spinoso-regexp/Cargo.toml @@ -17,7 +17,7 @@ bitflags = "1.2" bstr = { version = "0.2, >= 0.2.4", default-features = false } itoa = "0.4" onig = { version = "6.1", default-features = false, optional = true } -regex = { version = "1, >= 1.3", default-features = false, features = ["std", "unicode-perl"] } +regex = { version = "1, >= 1.4.3", default-features = false, features = ["std", "unicode-perl"] } scolapasta-string-escape = { version = "0.2", path = "../scolapasta-string-escape", default-features = false } [features]