Skip to content

Commit

Permalink
Update minimum regexp version requirement in spinoso-regexp
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
lopopolo committed Feb 24, 2021
1 parent e80e822 commit 25427ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spinoso-regexp/Cargo.toml
Expand Up @@ -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]
Expand Down

0 comments on commit 25427ca

Please sign in to comment.