Closed as not planned
Description
What version of regex are you using?
We have a test system that forces the version back to the lowest compatible with our dependency specification. That was, briefly, 1.5.0.
Describe the bug at a high level.
regex seems not to compile with this error:
error[E0433]: failed to resolve: use of undeclared crate or module `syntax`
--> /home/.../.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.5.0/src/literal/mod.rs:9:9
|
9 | use syntax::hir::literal::Literals;
| ^^^^^^ use of undeclared crate or module `syntax`
What are the steps to reproduce the behavior?
Was briefly compiling HEAD of project stratisd w/ regex version spec set to "1.5.0".
Also, ran command:
cargo update [email protected] --precise 1.5.0
to set actual version in Cargo.lock to 1.5.0.
Saw above error, which will also be visible at this URL: https://github.com/stratis-storage/stratisd/actions/runs/3567286163/jobs/5994792307 (scroll to bottom).
What is the actual behavior?
regex fails to compile w/ the error shown above.
What is the expected behavior?
regex compiles.