sqlite-diff-rs 0.13.0

Build SQLite changeset and patchset binary formats programmatically, without SQLite
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# SonarQube Cloud analysis configuration. The organization and project keys
# come from the SonarQube Cloud project import and must match it exactly.
sonar.organization=lucacappelletti94-github
sonar.projectKey=LucaCappelletti94_sqlite-diff-rs
sonar.projectName=sqlite-diff-rs

# tests/ trees carry the test scope. Inline #[cfg(test)] modules stay
# classified as sources, which is the Rust reality. The source exclusion
# keeps the two scopes disjoint, which the scanner requires.
sonar.sources=src,benches,fuzz,compile-bench,integration-tests
sonar.exclusions=**/target/**,**/tests/**
sonar.tests=tests,integration-tests/diesel-e2e/tests,integration-tests/schema-aware-roundtrip/tests
sonar.sourceEncoding=UTF-8

# Clippy runs as a token-free workflow step and the scan imports its report,
# keeping SONAR_TOKEN away from dependency build scripts and proc macros.
sonar.rust.clippy.enabled=false
sonar.rust.clippyReport.reportPaths=clippy-report.json