Skip to content

Commit 7240ba8

Browse files
manuzhangFokko
andauthored
chore: Replace async-std with smol (#1640)
## Which issue does this PR close? <!-- We generally require a GitHub issue to be filed for all bug fixes and enhancements and this helps us generate change logs for our releases. You can link an issue to this PR using the GitHub syntax. For example `Closes #123` indicates that this PR will close issue #123. --> - Closes #1633 . ## What changes are included in this PR? Replace deprecated [async-std](https://github.com/async-rs/async-std) dependency with smol ## Are these changes tested? UT and integration tests. --------- Co-authored-by: Fokko Driesprong <[email protected]>
1 parent 79f28ff commit 7240ba8

File tree

5 files changed

+97
-109
lines changed

5 files changed

+97
-109
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,8 @@ jobs:
137137
- name: Test
138138
run: cargo test --no-fail-fast --all-targets --all-features --workspace
139139

140-
- name: Async-std Test
141-
run: cargo test --no-fail-fast --all-targets --no-default-features --features "async-std" --features "storage-all" --workspace
140+
- name: Smol Test
141+
run: cargo test --no-fail-fast --all-targets --no-default-features --features "smol" --features "storage-all" --workspace
142142

143143
- name: Doc Test
144144
run: cargo test --no-fail-fast --doc --all-features --workspace

Cargo.lock

Lines changed: 74 additions & 86 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ arrow-schema = { version = "55" }
5151
arrow-select = { version = "55" }
5252
arrow-string = { version = "55" }
5353
as-any = "0.3.2"
54-
async-std = "1.12"
5554
async-trait = "0.1.88"
5655
aws-config = "1.6.1"
5756
aws-sdk-glue = "1.39"
@@ -110,6 +109,7 @@ serde_derive = "1.0.210"
110109
serde_json = "1.0.138"
111110
serde_repr = "0.1.16"
112111
serde_with = "3.4"
112+
smol = "2.0.2"
113113
sqllogictest = "0.28"
114114
stacker = "0.1.20"
115115
strum = "0.27"

0 commit comments

Comments
 (0)