We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f9f693 commit 0c6dfbcCopy full SHA for 0c6dfbc
CHANGELOG.md
@@ -1,3 +1,9 @@
1
+1.5.1 (2021-04-30)
2
+==================
3
+This is a patch release that fixes a compilation error when the `perf-literal`
4
+feature is not enabled.
5
+
6
7
1.5.0 (2021-04-30)
8
==================
9
This release primarily updates to Rust 2018 (finally) and bumps the MSRV to
src/literal/mod.rs
@@ -6,7 +6,7 @@ mod imp;
#[allow(missing_docs)]
#[cfg(not(feature = "perf-literal"))]
mod imp {
- use syntax::hir::literal::Literals;
+ use regex_syntax::hir::literal::Literals;
10
11
#[derive(Clone, Debug)]
12
pub struct LiteralSearcher(());
0 commit comments