Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
785 changes: 785 additions & 0 deletions rust/rac-engine/src/composition.rs

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions rust/rac-engine/src/index_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -801,6 +801,9 @@ impl MmapIndexReader {
let mut rows = Vec::with_capacity(count.min(1 << 20) as usize);
for _ in 0..count {
rows.push(crate::retrieve::ScopeRow {
key: None,
artifact_path: None,
origin: None,
id: reader.text()?,
title: reader.text()?,
status: reader.text()?,
Expand Down
1 change: 1 addition & 0 deletions rust/rac-engine/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ pub mod parse;
pub mod classify;
pub mod identity;
pub mod corpus;
pub mod composition;
pub mod validate;
pub mod relationships;
pub mod diff;
Expand Down
Loading
Loading