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.
1 parent 2a2b76d commit c456d2cCopy full SHA for c456d2c
Cargo.toml
@@ -2,7 +2,7 @@
2
members = [
3
"codegen",
4
"postgres",
5
-# "postgres-native-tls",
+ "postgres-native-tls",
6
"postgres-openssl",
7
"postgres-protocol",
8
"tokio-postgres",
postgres-native-tls/src/test.rs
@@ -12,7 +12,7 @@ where
12
T: TlsConnect<TcpStream>,
13
T::Stream: 'static + Send,
14
{
15
- let stream = TcpStream::connect(&"127.0.0.1:5433".parse().unwrap())
+ let stream = TcpStream::connect("127.0.0.1:5433")
16
.await
17
.unwrap();
18
0 commit comments