Skip to content

Smol+async global executor 1.80 dev #3791

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 30 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
fb3f254
Sqlx-core: rename async_io dependency for async-std
martin-kolarik Mar 2, 2025
31553e7
Sqlx-core: simplify TimeoutError
martin-kolarik Mar 2, 2025
0c12744
Sqlx-core: code for async-global-executor
martin-kolarik Mar 2, 2025
6c324b1
Sqlx: integrate async-global-executor feature
martin-kolarik Mar 2, 2025
46f8400
Merge with upstream
martin-kolarik Mar 2, 2025
40f3d8d
Note to unsafe
martin-kolarik Mar 2, 2025
375b493
Step up MSRV as async-global-executor needs it
martin-kolarik Mar 2, 2025
aef441b
Sqlx-core: fix of unix socket build
martin-kolarik Mar 2, 2025
f5e374a
Unsafe fixes, smol executor added
martin-kolarik Mar 16, 2025
7de5718
Workflow fix
martin-kolarik Mar 16, 2025
b462f43
Changes outside sqlx_rt
martin-kolarik Mar 16, 2025
4f851b0
Cleanup conditional rt compilation
martin-kolarik Mar 17, 2025
4eadb24
Warning
martin-kolarik Mar 17, 2025
dd053e1
Merge branch 'temp'
martin-kolarik Mar 17, 2025
aa29a3e
Add executors to test matrix
martin-kolarik Mar 17, 2025
89faf0e
Fix of skipping code sqlite due to mismatch in cargo feature names
martin-kolarik Mar 17, 2025
8cc0f5c
Merge remote-tracking branch 'origin/sqlx-cli-sqlite-create-WAL-db-fix'
martin-kolarik Mar 17, 2025
ddcf4ed
Smol executor isolated
martin-kolarik Mar 17, 2025
653152a
Fix, reduce number of tests, remove async_std
martin-kolarik Mar 17, 2025
d1e91f6
Fix of test_block_on, regression
martin-kolarik Mar 17, 2025
5627ca8
Format fixes
martin-kolarik Mar 17, 2025
c7fa793
async-global-executor added
martin-kolarik Mar 17, 2025
580b8df
Merge branch 'launchbadge:main' into main
martin-kolarik Apr 13, 2025
1698c3b
Merge branch 'main' into smol+async-global-executor-1.80-dev
martin-kolarik Apr 13, 2025
8d6377b
async-std changed to 1.13
martin-kolarik Apr 13, 2025
5e529a9
litemap, zerofrom requires rustc 1.81
martin-kolarik Apr 13, 2025
e668ece
Fix of missing _sqlite in cargo.toml
martin-kolarik Apr 13, 2025
246bfd3
Clippy lints
martin-kolarik Apr 13, 2025
9b0cebb
Clean up
martin-kolarik Apr 13, 2025
c3e8f61
Remove features combinations
martin-kolarik Apr 13, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/sqlx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-24.04
strategy:
matrix:
runtime: [ async-std, tokio ]
runtime: [ async-std, async-global-executor, smol, tokio ]
tls: [ native-tls, rustls, none ]
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
runs-on: ubuntu-24.04
strategy:
matrix:
runtime: [ async-std, tokio ]
runtime: [ async-global-executor, smol, tokio ]
linking: [ sqlite, sqlite-unbundled ]
needs: check
steps:
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
strategy:
matrix:
postgres: [ 17, 13 ]
runtime: [ async-std, tokio ]
runtime: [ async-global-executor, smol, tokio ]
tls: [ native-tls, rustls-aws-lc-rs, rustls-ring, none ]
needs: check
steps:
Expand Down Expand Up @@ -288,7 +288,7 @@ jobs:
strategy:
matrix:
mysql: [ 8 ]
runtime: [ async-std, tokio ]
runtime: [ async-global-executor, smol, tokio ]
tls: [ native-tls, rustls-aws-lc-rs, rustls-ring, none ]
needs: check
steps:
Expand Down Expand Up @@ -377,7 +377,7 @@ jobs:
strategy:
matrix:
mariadb: [ verylatest, 11_4, 10_11, 10_4 ]
runtime: [ async-std, tokio ]
runtime: [ async-global-executor, smol, tokio ]
tls: [ native-tls, rustls-aws-lc-rs, rustls-ring, none ]
needs: check
steps:
Expand Down
Loading
Loading