Skip to content

Commit 7de5718

Browse files
Workflow fix
1 parent f5e374a commit 7de5718

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/sqlx.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-22.04
2222
strategy:
2323
matrix:
24-
runtime: [async-global-executor, async-std, tokio]
24+
runtime: [async-global-executor, async-std, smol, tokio]
2525
tls: [native-tls, rustls, none]
2626
steps:
2727
- uses: actions/checkout@v4
@@ -116,7 +116,7 @@ jobs:
116116
runs-on: ubuntu-22.04
117117
strategy:
118118
matrix:
119-
runtime: [async-global-executor, async-std, tokio]
119+
runtime: [async-global-executor, async-std, smol, tokio]
120120
linking: [sqlite, sqlite-unbundled]
121121
needs: check
122122
steps:
@@ -183,7 +183,7 @@ jobs:
183183
strategy:
184184
matrix:
185185
postgres: [17, 13]
186-
runtime: [async-global-executor, async-std, tokio]
186+
runtime: [async-global-executor, async-std, smol, tokio]
187187
tls: [native-tls, rustls-aws-lc-rs, rustls-ring, none]
188188
needs: check
189189
steps:
@@ -283,7 +283,7 @@ jobs:
283283
strategy:
284284
matrix:
285285
mysql: [8]
286-
runtime: [async-global-executor, async-std, tokio]
286+
runtime: [async-global-executor, async-std, smol, tokio]
287287
tls: [native-tls, rustls-aws-lc-rs, rustls-ring, none]
288288
needs: check
289289
steps:
@@ -371,7 +371,7 @@ jobs:
371371
strategy:
372372
matrix:
373373
mariadb: [verylatest, 11_4, 10_11, 10_4]
374-
runtime: [async-global-executor, async-std, tokio]
374+
runtime: [async-global-executor, async-std, smol, tokio]
375375
tls: [native-tls, rustls-aws-lc-rs, rustls-ring, none]
376376
needs: check
377377
steps:

sqlx-core/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
#![allow(clippy::needless_doctest_main, clippy::type_complexity)]
1818
// The only unsafe code in SQLx is that necessary to interact with native APIs like with SQLite,
1919
// and that can live in its own separate driver crate.
20-
// temporary
2120
#![forbid(unsafe_code)]
2221
// Allows an API be documented as only available in some specific platforms.
2322
// <https://doc.rust-lang.org/unstable-book/language-features/doc-cfg.html>

0 commit comments

Comments
 (0)