Skip to content
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

Fix ci 20241226 #1345

Merged
merged 50 commits into from
Dec 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
a08702e
upgrade Wasmer
sanity Dec 26, 2024
10a8460
fix: Add type annotation for `req_pages` to resolve Rust type inferen…
sanity Dec 26, 2024
d68eb07
attempt to fix CI
sanity Dec 26, 2024
9b7df64
Merge branch 'upgrade-dependencies-20241226' into fix-ci-20241226
sanity Dec 26, 2024
7d7c8f1
fix clippy errors in stdlib
sanity Dec 26, 2024
a984db6
fix formatting in stdlib
sanity Dec 26, 2024
5c2ad85
another clippy fix in stdlib
sanity Dec 26, 2024
d85bfcb
refactor: Remove unnecessary `return` keyword in contract update method
sanity Dec 26, 2024
eece6c9
refactor: Simplify lifetimes and reduce type complexity in core crates
sanity Dec 26, 2024
4530b48
fix formatting
sanity Dec 26, 2024
f2b8eb4
fix: Remove unstable associated types and unused imports in connectio…
sanity Dec 26, 2024
50b89af
refactor: Remove explicit TraverseNatFuture type and inline return type
sanity Dec 26, 2024
7ddcf09
fix formatting
sanity Dec 26, 2024
9b6d5e5
fix: Add missing trait imports for futures and tracing
sanity Dec 26, 2024
2309082
fix formatting again
sanity Dec 26, 2024
88ad938
refactor: Remove unnecessary lifetimes and simplify complex types
sanity Dec 26, 2024
8d10037
fix: Replace unstable `impl Trait` type aliases with `Box<dyn Future>`
sanity Dec 26, 2024
5e1ff08
fix: Resolve future mapping and instrumentation type issues
sanity Dec 26, 2024
44f1d9a
fix: Resolve future boxing and instrumentation issues in connection h…
sanity Dec 26, 2024
80e2108
fix: Resolve future pinning and error handling in connection handler
sanity Dec 26, 2024
7949b2e
fix: Pin boxed futures and simplify async blocks in connection handler
sanity Dec 26, 2024
1d8535b
refactor: Remove redundant async move block in connection handler
sanity Dec 26, 2024
5c29687
fix: Pin futures correctly in connection handler
sanity Dec 26, 2024
07f2ee4
fix: Simplify future pinning in connection handler
sanity Dec 26, 2024
9584e13
fix: Pin futures in connection handler to resolve async type errors
sanity Dec 26, 2024
eac013f
fix: Resolve future pinning issues in connection handler
sanity Dec 26, 2024
6b7ccbe
fix: Resolve future polling type mismatches in connection handler
sanity Dec 26, 2024
a61e6d4
fix: Resolve future polling and pinning issues in connection handler
sanity Dec 26, 2024
565858e
fix: Simplify future handling in connection handler
sanity Dec 26, 2024
8015154
fix: Pin boxed futures to resolve Unpin trait compilation errors
sanity Dec 26, 2024
f81bd33
fix: Remove redundant pinning of boxed futures in connection handler
sanity Dec 26, 2024
d5f8d51
fix: Pin boxed futures before awaiting in connection handler
sanity Dec 26, 2024
61b7609
fix: Remove redundant pinning of futures in connection handler
sanity Dec 26, 2024
b9adeae
fix: Pin boxed futures before awaiting in connection handler
sanity Dec 26, 2024
ad97af0
fix: Resolve future pinning issues in connection handler
sanity Dec 26, 2024
ee2f32e
fix: Resolve pinning issues for boxed futures in connection handler
sanity Dec 26, 2024
db651f1
fix: Resolve pinning issues with dynamic futures in connection handler
sanity Dec 26, 2024
09526cd
fix: Remove redundant pinning of boxed futures in connection handler
sanity Dec 26, 2024
1f284e0
fix: Wrap match results in boxed async blocks to resolve type mismatch
sanity Dec 26, 2024
808b994
fix: Resolve async future type mismatch in connection handler
sanity Dec 26, 2024
e538988
fix: Pin boxed futures to resolve Unpin trait compilation errors
sanity Dec 26, 2024
6016c5c
fix: Resolve future pinning issues in connection handler
sanity Dec 26, 2024
03a1c57
fix: Remove redundant pinning of boxed futures in connection handler
sanity Dec 26, 2024
c16decd
fix: Pin dynamic futures to resolve Unpin trait compilation errors
sanity Dec 26, 2024
17e4218
fix: Resolve future pinning issues in connection handler
sanity Dec 26, 2024
f3eedb7
fix: Remove redundant pinning of futures in connection handler
sanity Dec 26, 2024
c3d60c6
fix: Pin futures in connection handler to resolve Unpin trait issues
sanity Dec 26, 2024
487078a
fix: Remove redundant `Box::pin()` calls in connection handler futures
sanity Dec 26, 2024
29c67e8
fix: Pin boxed futures to resolve Unpin trait compilation errors
sanity Dec 26, 2024
6ead963
format
sanity Dec 26, 2024
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
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# Aider AI coding tool
.aider.*

### Rust ###
# Generated by Cargo
# will have compiled files and executables
Expand All @@ -27,3 +24,4 @@ config.toml
.rustc*

rustc-ice*.txt
.aider*
Loading
Loading