Skip to content

Commit

Permalink
Fix regex and memchr dependencies for rust 1.60
Browse files Browse the repository at this point in the history
  • Loading branch information
Wilfred committed Nov 1, 2023
1 parent f4af585 commit 994dc95
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
15 changes: 8 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ pkg-fmt = "zip"

[dependencies]
# regex 1.10 requires rust 1.65.
regex = "1.9.6"
# regex 1.9.5 depends on memchr 2.6, which requires rust 1.61.
regex = ">= 1.9, < 1.9.5"
memchr = ">= 2, < 2.6"

clap = { version = "3.1.8", features = ["cargo", "env", "wrap_help"] }
itertools = "0.11.0"
typed-arena = "2.0.2"
Expand Down

0 comments on commit 994dc95

Please sign in to comment.