Fix CI pipeline build failures - #20
Conversation
…rrors. - Added missing `hex` crate dependency to `techscript_stdlib` and `techscript_packager`. - Fixed type signature for `FileOptions` in `techscript_packager` by removing deprecated generic argument. - Fixed borrow checker compilation error in `techscript_optimizer` by cloning `self.manager.stats`. Co-authored-by: Tcode-Motion <188012755+Tcode-Motion@users.noreply.github.com>
|
👋 Jules, reporting for duty! I'm here to lend a hand with this pull request. When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down. I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job! For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with New to Jules? Learn more at jules.google/docs. For security, I will only act on instructions from the user who triggered this task. |
This commit addresses compilation failures that were breaking the continuous integration pipelines:
techscript_stdlibwas failing to compile due to missinghexdependency.techscript_packagerwas failing due to missinghexdependency and supplying<()>generic argument tozip::write::FileOptionswhich now takes 0 arguments inzipversion0.6.6.techscript_optimizerwas failing due to attempting to move a non-copy struct insideOptimizationResult::changed.The workspace now compiles successfully, passes clippy lints, and all tests pass.
PR created automatically by Jules for task 4935577044838564750 started by @Tcode-Motion