Skip to content

Commit

Permalink
engines: fix rust regex engines
Browse files Browse the repository at this point in the history
While I'm working on regex-automata, I basically have a bunch of manual
`[patch.crates-io]` things to make crates use update code. It's a big
mess and a pain in the butt to deal with whenever `rust/regex` has a new
release.

Hopefully everything gets merged soon and we can get rid of all this
nonsense.
  • Loading branch information
BurntSushi committed Apr 15, 2023
1 parent 613fd59 commit 05098b4
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
20 changes: 10 additions & 10 deletions engines/rust/regex-automata/Cargo.lock

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

18 changes: 9 additions & 9 deletions engines/rust/regex/Cargo.lock

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

4 changes: 2 additions & 2 deletions engines/rust/regex/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "main"
version = "1.7.2"
version = "1.7.3"
edition = "2021"

[[bin]]
Expand All @@ -26,7 +26,7 @@ lexopt = "0.3.0"
# parsing the Cargo.lock file would be inappropriate as that doesn't mean the
# engine is available to run. Otherwise, it would be fine to just rely on
# 'Cargo.lock' for version pinning and we could drop the '=' constraint here.
regex = "=1.7.2"
regex = "=1.7.3"

[dependencies.klv]
path = "../../../shared/klv"
Expand Down

0 comments on commit 05098b4

Please sign in to comment.