We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75a938a commit 4f6afa1Copy full SHA for 4f6afa1
1 file changed
src/error.rs
@@ -5,7 +5,7 @@ use std::io;
5
use std::fmt;
6
7
use openssl::ssl::error;
8
-use phf::PhfMap;
+use phf;
9
10
use PostgresResult;
11
use types::PostgresType;
@@ -20,7 +20,7 @@ macro_rules! make_errors(
20
UnknownSqlState(String)
21
}
22
23
- static STATE_MAP: PhfMap<&'static str, PostgresSqlState> = phf_map!(
+ static STATE_MAP: phf::Map<&'static str, PostgresSqlState> = phf_map!(
24
$($code => $error),+
25
);
26
0 commit comments