File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -103,6 +103,7 @@ runtime-tokio-rustls = [
103103# for conditional compilation
104104_rt-async-std = []
105105_rt-tokio = []
106+ _rt-actix = []
106107
107108# database
108109any = [" sqlx-core/any" ]
@@ -150,6 +151,10 @@ tempdir = "0.3.7"
150151# Needed to test SQLCipher
151152libsqlite3-sys = { version = " 0" , features = [" bundled-sqlcipher-vendored-openssl" ] }
152153
154+
155+ [lints .rust ]
156+ unexpected_cfgs = { level = " warn" , check-cfg = [' cfg(sqlite_ipaddr)' ] }
157+
153158#
154159# Any
155160#
Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ where
149149 * self = MaybeTlsStream :: Raw ( raw) ;
150150 return Ok ( ( ) ) ;
151151 }
152-
152+
153153 #[ cfg( feature = "_tls-native-tls" ) ]
154154 {
155155 let _ = stream; // Use the variable to avoid warning
Original file line number Diff line number Diff line change 11use sqlx_oldapi:: any:: { AnyConnectOptions , AnyPoolOptions } ;
2- use sqlx_oldapi:: { Executor , Row } ;
2+ use sqlx_oldapi:: Executor ;
33use std:: sync:: atomic:: AtomicI32 ;
44use std:: sync:: {
55 atomic:: { AtomicUsize , Ordering } ,
You can’t perform that action at this time.
0 commit comments