Dependency cleanup, Wasmer 6.1.0#84
Merged
andrei-marinica merged 8 commits intorelease-5-1from Jan 20, 2026
Merged
Conversation
5cab47c to
981d9ce
Compare
There was a problem hiding this comment.
Pull request overview
This pull request upgrades Wasmer to version 6.1.0 and performs dependency cleanup across the codebase. The logger functionality is moved from the vm-executor-wasmer package to the c-api package where it's actually needed, improving the architectural separation between the core VM executor and the C API layer.
Changes:
- Upgrades Wasmer from custom fork revision to version 6.1.0 in vm-executor-experimental
- Removes unused dependencies (toml, chrono) from packages that don't need them
- Moves wasmer_logger from vm-executor-wasmer to c-api package
- Updates Rust toolchain from 1.83 to 1.92 and modernizes GitHub Actions macOS runners
Reviewed changes
Copilot reviewed 15 out of 16 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| vm-executor/Cargo.toml | Removes unused toml dependency |
| vm-executor-wasmer/Cargo.toml | Updates Wasmer fork revision, removes chrono dependency, updates log version constraint |
| vm-executor-wasmer/src/wasmer_service.rs | Removes logger initialization (moved to c-api) |
| vm-executor-wasmer/src/wasmer_instance.rs | Minor import reordering and whitespace cleanup |
| vm-executor-wasmer/src/lib.rs | Removes wasmer_logger module references |
| vm-executor-experimental/Cargo.toml | Upgrades Wasmer from 6.0 to 6.1, removes chrono, updates log version |
| c-api/Cargo.toml | Adds chrono dependency, updates env_logger and cbindgen versions |
| c-api/src/wasmer_logger.rs | New file containing logger implementation moved from vm-executor-wasmer |
| c-api/src/service_singleton.rs | Adds logger initialization during service creation |
| c-api/src/lib.rs | Exports wasmer_logger module and its public functions |
| c-api/src/capi_logger.rs | Updates imports to use local wasmer_logger, minor formatting |
| c-api/src/capi_instance.rs | Removes extraneous blank line |
| c-api/libvmexeccapi.h | Adds proper type names to C structs/enums, improves formatting with multi-line function pointers |
| .github/workflows/rust-ci.yml | Updates Rust toolchain from 1.83 to 1.92 |
| .github/workflows/libvmexeccapi-build.yml | Updates Rust toolchain and macOS runner versions |
| .cargo/config.toml | Adds build configuration to disable debug assertions for Wasmer compatibility |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.