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.
2 parents 63cc9f5 + 6c5303e commit 3eba1e6Copy full SHA for 3eba1e6
.github/workflows/ci.yml
@@ -9,7 +9,7 @@ on:
9
10
env:
11
# minimum supported rust version
12
- MSRV: 1.49
+ MSRV: 1.56
13
14
jobs:
15
check:
conduit-router/src/lib.rs
@@ -108,7 +108,7 @@ impl conduit::Handler for RouteBuilder {
108
let method = request.method();
109
let path = request.path();
110
111
- match self.recognize(&method, path) {
+ match self.recognize(method, path) {
112
Ok(m) => m,
113
Err(e) => {
114
info!("{}", e);
0 commit comments