Skip to content

Commit b3def73

Browse files
workaround for launchbadge#3211
1 parent a5d7fff commit b3def73

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ default = ["any", "macros", "migrate", "json"]
5656

5757
derive = ["sqlx-macros/derive"]
5858
macros = ["derive", "sqlx-macros/macros"]
59-
migrate = ["sqlx-core/migrate", "sqlx-macros?/migrate", "sqlx-mysql?/migrate", "sqlx-postgres?/migrate", "sqlx-sqlite?/migrate"]
59+
migrate = ["sqlx-core/migrate", "sqlx-macros?/migrate", "sqlx-postgres?/migrate"]
6060

6161
# intended mainly for CI and docs
6262
all-databases = ["mysql", "sqlite", "postgres", "any"]
@@ -96,22 +96,22 @@ _rt-async-std = []
9696
_rt-tokio = []
9797

9898
# database
99-
any = ["sqlx-core/any", "sqlx-mysql?/any", "sqlx-postgres?/any", "sqlx-sqlite?/any"]
99+
any = ["sqlx-core/any", "sqlx-postgres?/any"]
100100
postgres = ["sqlx-postgres", "sqlx-macros?/postgres"]
101101
mysql = ["sqlx-mysql", "sqlx-macros?/mysql"]
102102
sqlite = ["sqlx-sqlite", "sqlx-macros?/sqlite"]
103103

104104
# types
105-
json = ["sqlx-macros?/json", "sqlx-mysql?/json", "sqlx-postgres?/json", "sqlx-sqlite?/json"]
105+
json = ["sqlx-macros?/json", "sqlx-postgres?/json"]
106106

107-
bigdecimal = ["sqlx-core/bigdecimal", "sqlx-macros?/bigdecimal", "sqlx-mysql?/bigdecimal", "sqlx-postgres?/bigdecimal"]
107+
bigdecimal = ["sqlx-core/bigdecimal", "sqlx-macros?/bigdecimal", "sqlx-postgres?/bigdecimal"]
108108
bit-vec = ["sqlx-core/bit-vec", "sqlx-macros?/bit-vec", "sqlx-postgres?/bit-vec"]
109-
chrono = ["sqlx-core/chrono", "sqlx-macros?/chrono", "sqlx-mysql?/chrono", "sqlx-postgres?/chrono", "sqlx-sqlite?/chrono"]
109+
chrono = ["sqlx-core/chrono", "sqlx-macros?/chrono", "sqlx-postgres?/chrono", "sqlx-sqlite?/chrono"]
110110
ipnetwork = ["sqlx-core/ipnetwork", "sqlx-macros?/ipnetwork", "sqlx-postgres?/ipnetwork"]
111111
mac_address = ["sqlx-core/mac_address", "sqlx-macros?/mac_address", "sqlx-postgres?/mac_address"]
112-
rust_decimal = ["sqlx-core/rust_decimal", "sqlx-macros?/rust_decimal", "sqlx-mysql?/rust_decimal", "sqlx-postgres?/rust_decimal"]
113-
time = ["sqlx-core/time", "sqlx-macros?/time", "sqlx-mysql?/time", "sqlx-postgres?/time", "sqlx-sqlite?/time"]
114-
uuid = ["sqlx-core/uuid", "sqlx-macros?/uuid", "sqlx-mysql?/uuid", "sqlx-postgres?/uuid", "sqlx-sqlite?/uuid"]
112+
rust_decimal = ["sqlx-core/rust_decimal", "sqlx-macros?/rust_decimal", "sqlx-postgres?/rust_decimal"]
113+
time = ["sqlx-core/time", "sqlx-macros?/time", "sqlx-postgres?/time"]
114+
uuid = ["sqlx-core/uuid", "sqlx-macros?/uuid", "sqlx-postgres?/uuid"]
115115
regexp = ["sqlx-sqlite?/regexp"]
116116

117117
[workspace.dependencies]

sqlx-macros-core/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,16 @@ postgres = ["sqlx-postgres"]
2828
sqlite = ["sqlx-sqlite"]
2929

3030
# type integrations
31-
json = ["sqlx-core/json", "sqlx-mysql?/json", "sqlx-sqlite?/json"]
31+
json = ["sqlx-core/json"]
3232

33-
bigdecimal = ["sqlx-core/bigdecimal", "sqlx-mysql?/bigdecimal", "sqlx-postgres?/bigdecimal"]
33+
bigdecimal = ["sqlx-core/bigdecimal", "sqlx-postgres?/bigdecimal"]
3434
bit-vec = ["sqlx-core/bit-vec", "sqlx-postgres?/bit-vec"]
35-
chrono = ["sqlx-core/chrono", "sqlx-mysql?/chrono", "sqlx-postgres?/chrono", "sqlx-sqlite?/chrono"]
35+
chrono = ["sqlx-core/chrono", "sqlx-postgres?/chrono"]
3636
ipnetwork = ["sqlx-core/ipnetwork", "sqlx-postgres?/ipnetwork"]
3737
mac_address = ["sqlx-core/mac_address", "sqlx-postgres?/mac_address"]
38-
rust_decimal = ["sqlx-core/rust_decimal", "sqlx-mysql?/rust_decimal", "sqlx-postgres?/rust_decimal"]
39-
time = ["sqlx-core/time", "sqlx-mysql?/time", "sqlx-postgres?/time", "sqlx-sqlite?/time"]
40-
uuid = ["sqlx-core/uuid", "sqlx-mysql?/uuid", "sqlx-postgres?/uuid", "sqlx-sqlite?/uuid"]
38+
rust_decimal = ["sqlx-core/rust_decimal", "sqlx-postgres?/rust_decimal"]
39+
time = ["sqlx-core/time", "sqlx-postgres?/time"]
40+
uuid = ["sqlx-core/uuid", "sqlx-postgres?/uuid"]
4141

4242
[dependencies]
4343
sqlx-core = { workspace = true, features = ["offline"] }

0 commit comments

Comments
 (0)