File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ route-recognizer = "0.3"
32
32
matchit = " 0.7"
33
33
gonzales = " 0.0.3-beta"
34
34
futures = " 0.3"
35
- rand = " 0.8 "
35
+ rand = " 0.9 "
36
36
criterion = { version = " 0.5" , features = [" html_reports" ] }
37
37
hyper = { version = " 1" , features = [" full" ] }
38
38
hyper-util = { version = " 0.1" , features = [" tokio" ] }
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ impl<'a> Parser<'a> {
59
59
'\\' => {
60
60
if start < i {
61
61
self . pos = i;
62
- return self . input [ start..i] . as_bytes ( ) ;
62
+ return & self . input . as_bytes ( ) [ start..i] ;
63
63
}
64
64
65
65
self . cursor . next ( ) ;
@@ -70,13 +70,13 @@ impl<'a> Parser<'a> {
70
70
} else {
71
71
self . cursor . next ( ) ;
72
72
self . pos = j + c. len_utf8 ( ) ;
73
- return self . input [ j..self . pos ] . as_bytes ( ) ;
73
+ return & self . input . as_bytes ( ) [ j..self . pos ] ;
74
74
}
75
75
}
76
76
}
77
77
':' | '+' | '*' => {
78
78
self . pos = i + 1 ;
79
- return self . input [ start..i] . as_bytes ( ) ;
79
+ return & self . input . as_bytes ( ) [ start..i] ;
80
80
}
81
81
_ => {
82
82
self . cursor . next ( ) ;
@@ -94,15 +94,15 @@ impl<'a> Parser<'a> {
94
94
'-' | '.' | '~' | '/' | '\\' | ':' => {
95
95
self . pos = i;
96
96
return (
97
- Position :: Named ( self . input [ start..i] . as_bytes ( ) . to_vec ( ) ) ,
97
+ Position :: Named ( self . input . as_bytes ( ) [ start..i] . to_vec ( ) ) ,
98
98
Kind :: Normal ,
99
99
) ;
100
100
}
101
101
'?' | '+' | '*' => {
102
102
self . cursor . next ( ) ;
103
103
self . pos = i + 1 ;
104
104
return (
105
- Position :: Named ( self . input [ start..i] . as_bytes ( ) . to_vec ( ) ) ,
105
+ Position :: Named ( self . input . as_bytes ( ) [ start..i] . to_vec ( ) ) ,
106
106
if c == '+' {
107
107
Kind :: OneOrMore
108
108
} else {
@@ -133,7 +133,7 @@ impl<'a> Parser<'a> {
133
133
}
134
134
135
135
(
136
- Position :: Named ( self . input [ start..] . as_bytes ( ) . to_vec ( ) ) ,
136
+ Position :: Named ( self . input . as_bytes ( ) [ start..] . to_vec ( ) ) ,
137
137
Kind :: Normal ,
138
138
)
139
139
}
You can’t perform that action at this time.
0 commit comments