mirror of
https://github.com/samvallad33/vestige.git
synced 2026-05-08 23:32:37 +02:00
fix(ci): use vendored-openssl and actions-rust-cross
Two-pronged fix for cross-compilation: 1. git2 with vendored-openssl feature - compiles OpenSSL from source, eliminating system dependency issues across all platforms 2. houseabsolute/actions-rust-cross@v1 - dedicated GitHub Action that properly handles cross-compilation with Docker containers Sources: - https://github.com/rust-lang/git2-rs - https://github.com/houseabsolute/actions-rust-cross Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
ed2fbe60ee
commit
0bcceab717
2 changed files with 16 additions and 36 deletions
|
|
@ -52,7 +52,8 @@ tokio = { version = "1", features = ["sync", "rt-multi-thread", "macros"] }
|
|||
tracing = "0.1"
|
||||
|
||||
# Git integration for codebase memory
|
||||
git2 = "0.20"
|
||||
# vendored-openssl: Compile OpenSSL from source for cross-compilation support
|
||||
git2 = { version = "0.20", features = ["vendored-openssl"] }
|
||||
|
||||
# File watching for codebase memory
|
||||
notify = "8"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue