Skip to main content

rson_schema/
lib.rs

1//! RSON schema validation
2//!
3//! This crate provides schema validation for RSON values.
4
5pub use rson_core::*;
6
7// TODO: Implement schema validation
8// For now, this is a placeholder to let the workspace compile