1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//! Contract suites the engine ships so hosts can prove their adapters.
//!
//! The engine cedes storage, not the contract. A suite here is the
//! difference between a port a host implements and a port a host can be
//! shown to have implemented.
//!
//! Enabled by the `conformance` feature so the suites never enter a
//! production build, while staying available to any host, inside this
//! repository or outside it.
pub use AgenticSystemExecutionStoreConformance;
pub use AgenticSystemPublicationConformance;
pub use AgenticSystemRepositoryConformance;
pub use BudgetLedgerStoreConformance;
pub use CeremonyDefinitionPublicationConformance;
pub use CeremonyEventCursorConformance;
pub use CeremonyEventStoreConformance;
pub use CeremonySnapshotStoreConformance;
pub use ConformanceFailure;
pub use HostDeliveryLedgerConformance;
pub use IntegratorBindingConformance;
pub use MemoryConformance;
pub use MemoryConformanceFailure;