pdmt 1.0.1

High-performance, deterministic templating library for Model Context Protocol (MCP) applications with comprehensive todo validation and quality enforcement
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Data models for PDMT operations
//!
//! This module contains all the data structures used throughout the library,
//! organized by functional area.

pub mod content;
pub mod template;

#[cfg(feature = "todo-validation")]
pub mod todo;

#[cfg(feature = "quality-proxy")]
pub mod quality;

#[cfg(feature = "mcp-tools")]
pub mod mcp;