File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ version = "0.1.0"
4
4
authors = [" Steven Fackler <sfackler@gmail.com>" ]
5
5
6
6
[dependencies ]
7
- phf_codegen = " 0.11 "
7
+ phf_codegen = " 0.12 "
8
8
regex = " 1.0"
9
9
marksman_escape = " 0.1"
10
10
linked-hash-map = " 0.5"
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ enum Inner {{"#,
139
139
fn make_map ( codes : & LinkedHashMap < String , Vec < String > > , file : & mut BufWriter < File > ) {
140
140
let mut builder = phf_codegen:: Map :: new ( ) ;
141
141
for ( code, names) in codes {
142
- builder. entry ( & * * code, & format ! ( "SqlState::{}" , & names[ 0 ] ) ) ;
142
+ builder. entry ( & * * code, format ! ( "SqlState::{}" , & names[ 0 ] ) ) ;
143
143
}
144
144
write ! (
145
145
file,
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ log = "0.4"
57
57
parking_lot = " 0.12"
58
58
percent-encoding = " 2.0"
59
59
pin-project-lite = " 0.2"
60
- phf = " 0.11 "
60
+ phf = " 0.12 "
61
61
postgres-protocol = { version = " 0.6.8" , path = " ../postgres-protocol" }
62
62
postgres-types = { version = " 0.2.9" , path = " ../postgres-types" }
63
63
tokio = { version = " 1.27" , features = [" io-util" ] }
You can’t perform that action at this time.
0 commit comments