@@ -77,12 +77,12 @@ impl_type_checking!(
77
77
#[ cfg( feature = "rust_decimal" ) ]
78
78
sqlx:: types:: Decimal ,
79
79
80
- #[ cfg( all( feature = "ipnet" , not( feature = "ipnetwork" ) ) ) ]
81
- sqlx:: types:: ipnet:: IpNet ,
82
-
83
80
#[ cfg( feature = "ipnetwork" ) ]
84
81
sqlx:: types:: ipnetwork:: IpNetwork ,
85
82
83
+ #[ cfg( feature = "ipnet" ) ]
84
+ sqlx:: types:: ipnet:: IpNet ,
85
+
86
86
#[ cfg( feature = "mac_address" ) ]
87
87
sqlx:: types:: mac_address:: MacAddress ,
88
88
@@ -141,12 +141,12 @@ impl_type_checking!(
141
141
#[ cfg( feature = "rust_decimal" ) ]
142
142
Vec <sqlx:: types:: Decimal > | & [ sqlx:: types:: Decimal ] ,
143
143
144
- #[ cfg( all( feature = "ipnet" , not( feature = "ipnetwork" ) ) ) ]
145
- Vec <sqlx:: types:: ipnet:: IpNet > | & [ sqlx:: types:: ipnet:: IpNet ] ,
146
-
147
144
#[ cfg( feature = "ipnetwork" ) ]
148
145
Vec <sqlx:: types:: ipnetwork:: IpNetwork > | & [ sqlx:: types:: ipnetwork:: IpNetwork ] ,
149
146
147
+ #[ cfg( feature = "ipnet" ) ]
148
+ Vec <sqlx:: types:: ipnet:: IpNet > | & [ sqlx:: types:: ipnet:: IpNet ] ,
149
+
150
150
#[ cfg( feature = "mac_address" ) ]
151
151
Vec <sqlx:: types:: mac_address:: MacAddress > | & [ sqlx:: types:: mac_address:: MacAddress ] ,
152
152
0 commit comments