Skip to content

Commit 27827d8

Browse files
committed
Update to rust master
1 parent 0670c10 commit 27827d8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ license = "MIT"
55
repository = "https://github.com/conduit-rust/route-recognizer.rs"
66
keywords = ["router", "url"]
77

8-
version = "0.1.2"
8+
version = "0.1.3"
99
authors = ["wycats"]

src/nfa.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -563,9 +563,9 @@ fn bench_char_set(b: &mut test::Bencher) {
563563
set.insert('/');
564564

565565
b.iter(|| {
566-
assert!(set.contains('p'))
566+
assert!(set.contains('p'));
567567
assert!(set.contains('/'));
568-
assert!(!set.contains('z'));
568+
assert!(!set.contains('z'));
569569
});
570570
}
571571

0 commit comments

Comments
 (0)