-
Notifications
You must be signed in to change notification settings - Fork 21
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
chore: disable alloy default features #131
Conversation
Updated Cargo.toml to disable default features for the alloy crate, ensuring more controlled dependency management. Added specific `alloc` imports for `Vec` and `ToString` in various modules to address compilation requirements. Incremented the library version and adjusted workflows for enhanced build validation with extension features.
WalkthroughThe pull request updates multiple aspects of the project. The CI workflow now includes a new step to build with the “extensions” feature enabled. Updates in the package configuration bump the versions in both Cargo.toml and README, while dependency settings for alloy and uniswap-lens have been refined. Several source files in the extensions module receive minor import adjustments, and a new ticks field is added to dynamically store tick data. Bazinga. Changes
Sequence Diagram(s)sequenceDiagram
participant CI as GitHub Actions
participant Build as Standard Build
participant ExtBuild as Extended Build
CI->>Build: Run `cargo build`
Build-->>CI: Build complete
CI->>ExtBuild: Run `cargo build --features extensions`
ExtBuild-->>CI: Extended build complete
Possibly related PRs
Poem
Tip 🌐 Web search-backed reviews and chat
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (8)
⏰ Context from checks skipped due to timeout of 90000ms (1)
🔇 Additional comments (9)
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Updated Cargo.toml to disable default features for the alloy crate, ensuring more controlled dependency management. Added specific
alloc
imports forVec
andToString
in various modules to address compilation requirements. Incremented the library version and adjusted workflows for enhanced build validation with extension features.Summary by CodeRabbit