fcoreutils 0.13.0

High-performance GNU coreutils replacement with SIMD and parallelism
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
sonar.projectKey=AiBrush_fcoreutils
sonar.organization=aibrush
sonar.sources=src
sonar.tests=tests
sonar.exclusions=target/**,assembly/**/*.o
# CPD exclusions for intentional structural duplication:
# - hash: algorithmic duplication across SHA-256, SHA-512, MD5, etc. and between File/syscall I/O paths
# - cp/dd: shared raw-syscall I/O patterns (splice, copy_file_range, sendfile fallback chains)
# - head: dual read path (buffered vs raw) with similar structure
# - wc: SIMD and scalar counting paths with parallel structure
# - cat: similar buffered/unbuffered output paths
# - fold: ASCII fast path and byte-mode path share structural patterns
# - tail: sendfile + backward-scan patterns shared with head/cat
# - tests: natural structural similarity across test scenarios
sonar.cpd.exclusions=**/hash/**,**/cp/**,**/dd/**,**/head/**,**/wc/**,**/cat/**,**/fold/**,**/tail/**,**/tests.rs,**/tests/**