wn: depend on openssl@3 and pkgconf so it builds on Linux#2
Conversation
The dependency tree pulls openssl-sys via rusqlite's SQLCipher (encrypted SQLite) storage layer. macOS build environments supply OpenSSL implicitly, so the formula built there, but the minimal Homebrew Linux container does not, and `cargo install` failed in openssl-sys's build script. Declare openssl@3 as a link dependency and pkgconf as a build dependency so the build script can locate the crypto lib on every platform. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
|
Bugbot is not enabled for your account, so this pull request was not reviewed. Enable Bugbot in the Cursor dashboard to get automatic reviews on future PRs. |
|
Warning Review limit reachedYou’ve reached a temporary PR review limit under our Fair Usage Limits Policy. Next review available in: 50 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. ✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
|
Ready to review this PR? Stage has broken it down into 1 individual chapter for you:
Chapters generated by Stage for commit 2c42c7b on Jul 6, 2026 12:48pm UTC. |
Follow-up to #1. The Linux leg of tap CI failed to build
wn 0.9.1:Root cause
openssl-sysis a transitive dependency viarusqlite→libsqlite3-sys(SQLCipher-encrypted SQLite, the storage layer). It links against system OpenSSL. macOS build environments supply OpenSSL implicitly — the macOS legs and local builds passed — but the minimalghcr.io/homebrew/brew:mainLinux container does not, so the build script bailed. TLS already uses rustls; this is purely the SQLite encryption layer, so the native dep is genuinely required rather than removable.Fix
depends_on "openssl@3"— provides libcrypto for openssl-sysdepends_on "pkgconf" => :build— lets the build script locate itPasses
brew styleandbrew audit --strictlocally.🤖 Generated with Claude Code