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 0670c10 commit 27827d8Copy full SHA for 27827d8
Cargo.toml
@@ -5,5 +5,5 @@ license = "MIT"
5
repository = "https://github.com/conduit-rust/route-recognizer.rs"
6
keywords = ["router", "url"]
7
8
-version = "0.1.2"
+version = "0.1.3"
9
authors = ["wycats"]
src/nfa.rs
@@ -563,9 +563,9 @@ fn bench_char_set(b: &mut test::Bencher) {
563
set.insert('/');
564
565
b.iter(|| {
566
- assert!(set.contains('p'))
+ assert!(set.contains('p'));
567
assert!(set.contains('/'));
568
- assert!(!set.contains('z'));
+ assert!(!set.contains('z'));
569
});
570
}
571
0 commit comments