Nguyễn Sỹ
Nguyễn Sỹ
The error you're encountering is due to a version mismatch between the `protobuf` crate and the `onnx-protobuf` crate. Specifically: - Your project is using `protobuf` version 3.5.1 - The `onnx-protobuf`...
Adds `processor()` method that maps machine architecture strings to processor types, matching GNU coreutils behavior. Fixes uutils/coreutils#8659 ## Example ```rust let info = PlatformInfo::new()?; let processor = info.processor(); // "arm"...
# 📋 Security Vulnerability Remediation Progress Tracker ## Overview This issue tracks the progress of fixing the **32 security vulnerabilities** identified in our comprehensive security assessment. This is a follow-up...
# 🚨 CRITICAL SECURITY ASSESSMENT FINDINGS ## Executive Summary A comprehensive security assessment of AvoRed Rust CMS has identified **32 critical vulnerabilities** that pose significant risks to production deployments. This...
## Summary Fixes workspace detection when running trunk from within workspace member directories. Previously, trunk would fail to detect the correct package when run from a workspace member directory, now...
Fixes #9638 Redesigned `printf %q` implementation to match bash behavior. Previous approach incorrectly used `SHELL_ESCAPE` (designed for `ls`). Created dedicated `PrintfQuoter` with proper algorithm: empty→`''`, simple→unchanged, metacharacters→backslash, control→`$'...'`. Includes 18...
Fixes CI: #9587 #9632 Fixes flaky test_follow_name_multiple by increasing timeout from 500ms to 3000ms on macOS. Root cause: macOS FS caching delays output visibility when test framework reads redirected temp...
Implement modular factorization architecture with Pollard-Rho, ECM, and Fermat algorithms. Adds Montgomery arithmetic optimization and u64 fast-path for improved u128 performance. Dynamic algorithm selection based on input size routes through...
I noticed that when you pipe output and close it early (like `seq inf | head -n 1`), many utilities panic with error messages instead of exiting silently like GNU...
Hotfix for CI #9437 #9628 #9629 #9587 Fixes `test_retry6` failure by skipping file watcher events for untracked files in `--follow=descriptor` mode. When using `tail -f` without `--retry`, missing files that...