update: remove bless-crawl browser-runtime specific module#17
Merged
Conversation
uditdc
approved these changes
Jul 15, 2025
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.
Description
This pull request removes support for the
crawlfeature across the codebase, updates dependencies, and adjusts related documentation and configurations accordingly.The most significant changes include the removal of the
BlessCrawlplugin implementation, updates to theCargo.tomlfile to exclude thecrawlfeature, and modifications to theREADME.mdto reflect the removal ofBlessCrawl.Updated
blockless-sdkv0.2.2->v0.2.3Removal of
crawlfeature:.github/workflows/release.yml: Removedcrawlandbrowserbuild configurations from the matrix.src/crawl/mod.rs: Removed the entire implementation of theBlessCrawlplugin, including methods for scraping, mapping, and crawling web pages.src/lib.rs: Removed references to thecrawlmodule and its bindings from the runtime initialization logic. [1] [2] [3] [4]examples/crawl.js: Deleted the example file demonstrating usage of theBlessCrawlplugin.src/crawl/crawl.js: Removed the JavaScript wrapper for theBlessCrawlplugin.Updates to dependencies and features:
Cargo.toml: Updated theblockless-sdkdependency to version0.2.3and removed thecrawlfeature from the default feature set. [1] [2]Documentation updates:
README.md: Removed references toBlessCrawlfrom the list of plugins, architecture diagrams, and example commands. Updated example commands to useBlessFetchinstead. [1] [2] [3] [4] [5]