feat(artifacts): add bounded reconciliation

This commit is contained in:
2026-08-27 07:04:22 +03:00
parent 38ba898b72
commit 889b1bdb57
5 changed files with 985 additions and 9 deletions
+3 -2
View File
@@ -18,8 +18,9 @@ mod store;
pub mod test_support;
pub use error::ArtifactError;
pub use housekeeping::{StaleTemp, TempScan};
pub use housekeeping::{ReconciliationCandidate, ReconciliationCursor, StaleTemp, TempScan};
pub use model::{
ArtifactRef, MAX_ARTIFACT_BYTES, MAX_SOURCE_BYTES, RegisteredArtifact, StoredArtifact,
ArtifactRef, MAX_ARTIFACT_BYTES, MAX_SOURCE_BYTES, ReconciliationMutation,
ReconciliationNamespace, ReconciliationScan, RegisteredArtifact, StoredArtifact,
};
pub use store::ArtifactStore;