code-moniker-workspace 0.6.1

Workspace model, ports, snapshots, linkage, and change analysis for code-moniker.
Documentation
//! Parallel workspace snapshot model.
//!
//! This module is intentionally not wired directly to `WorkspaceStore`. It
//! defines the target orchestration model and tests it through semantic ports.

mod inventory;
mod model;
mod path;
mod records;
mod view;

pub use inventory::{
	InventorySegment, InventorySymbol, SymbolInventoryFacets, SymbolInventoryIndex, SymbolOrdinal,
	SymbolOrdinalCatalog, SymbolSet,
};
pub use records::RecordTable;

pub use model::{
	CandidateReason, CandidateReference, CandidateScope, ChangeId, ChangeOverlay,
	ChangeOverlayReport, ChangeRecord, ChangeRecordCoreFields, ChangeResource, ChangeStatus,
	CodeIndex, CodeIndexTimings, DynamicReason, DynamicReference, ExternalReference,
	ExternalReferenceOrigin, ExtractionMeasurement, LinkageEdge, LinkageReadIndex,
	LinkageReadIndexHandle, LinkageSnapshot, ReferenceId, ReferenceRecord, ResolutionEvidence,
	ResourceGeneration, SourceCatalog, SourceFileRecord, SourceId, SourceUnit, SymbolId,
	SymbolLocation, SymbolRecord, UnresolvedReason, UnresolvedReference, WorkspaceCancellation,
	WorkspaceFailure, WorkspaceRequest, WorkspaceResource, WorkspaceResult, WorkspaceSnapshot,
	WorkspaceTimings, WorkspaceTransition,
};
pub use path::{
	BoundedPathCoverage, BoundedPathEdge, BoundedPathEngine, BoundedPathLimits, BoundedPathRequest,
	BoundedPathScope, BoundedPathSearch, bounded_path,
};
pub use view::{
	ChangeDetail, ChangeSummary, ReferenceDirection, ReferenceSet, ReferenceSetSummary,
	ReferenceSummary, ReferenceView, SearchHit, SourceSummary, SourceView, SymbolDetail,
	SymbolReferences, SymbolSummary, SymbolView, UnresolvedLinkageReport, WorkspaceView,
};