pjson-rs 0.6.0

Priority JSON Streaming Protocol - high-performance priority-based JSON streaming (requires nightly Rust)
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Domain configuration module
//!
//! Contains domain-level configuration constants that define business rules
//! and validation constraints. These are independent of infrastructure.

pub mod limits;

pub use limits::{
    ALLOWED_SORT_FIELDS, DEFAULT_FRAME_HISTORY_PER_STREAM, MAX_PAGINATION_LIMIT,
    MAX_PAGINATION_OFFSET,
};