Skip to main content

tokenless_core/
lib.rs

1#![forbid(unsafe_code)]
2#![warn(missing_docs)]
3#![warn(missing_debug_implementations)]
4
5//! Shared core types for tokenless.
6//!
7//! This crate provides foundational types used across the workspace:
8//! - [`CoreError`] — unified error type
9//! - [`Config`] — validated configuration
10//! - [`SafePath`] — path traversal-resistant relative path
11
12mod config;
13mod error;
14mod safe_path;
15
16pub use config::Config;
17pub use error::{CoreError, Result};
18pub use safe_path::SafePath;