Skip to content

Commit 3eba1e6

Browse files
authored
Merge pull request rust-lang#101 from JohnTitor/msrv-1.56
2 parents 63cc9f5 + 6c5303e commit 3eba1e6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
env:
1111
# minimum supported rust version
12-
MSRV: 1.49
12+
MSRV: 1.56
1313

1414
jobs:
1515
check:

conduit-router/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ impl conduit::Handler for RouteBuilder {
108108
let method = request.method();
109109
let path = request.path();
110110

111-
match self.recognize(&method, path) {
111+
match self.recognize(method, path) {
112112
Ok(m) => m,
113113
Err(e) => {
114114
info!("{}", e);

0 commit comments

Comments
 (0)