vectie/moonfish/parity does not have a README file
pub(all) struct ParityCase {
id : String
group : ParityGroup
expectation : ParityExpectation
status : ParityStatus
source_ref : String
moonfish_ref : String
evidence_refs : Array[ParityEvidenceRef]
assertion : String
note : String
} derive(Eq, ToJson, Debug, FromJson)pub(all) struct ParityEvidenceRef {
kind : ParityEvidenceKind
path : String
role : String
} derive(Eq, ToJson, Debug, FromJson)pub(all) struct ParityReport {
source_fixture_root : String
pass_count : Int
review_count : Int
exact_count : Int
semantic_count : Int
intentional_difference_count : Int
fixture_case_count : Int
untraced_case_count : Int
cases : Array[ParityCase]
summary : String
} derive(Eq, ToJson, Debug, FromJson)pub(all) struct ParityReportInput {
workspace : AnalysisWorkspace
import_plan : LegacyImportPlan
source_fixture_root : String
} derive(Eq, ToJson, Debug, FromJson)fn parity_report_input(workspace : AnalysisWorkspace, import_plan : LegacyImportPlan, source_fixture_root? : String) -> ParityReportInputDependencies