mockforge-core 0.3.114

Shared logic for MockForge - routing, validation, latency, proxy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Consumer-driven contracts
//!
//! This module provides functionality for tracking consumer usage and detecting
//! consumer-specific breaking changes.

pub mod detector;
pub mod registry;
pub mod types;
pub mod usage_recorder;

pub use detector::ConsumerBreakingChangeDetector;
pub use registry::ConsumerRegistry;
pub use types::{Consumer, ConsumerIdentifier, ConsumerType, ConsumerUsage, ConsumerViolation};
pub use usage_recorder::UsageRecorder;