tokenless-core 1.0.0

Shared core types for tokenless
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![forbid(unsafe_code)]
#![warn(missing_docs)]
#![warn(missing_debug_implementations)]

//! Shared core types for tokenless.
//!
//! This crate provides foundational types used across the workspace:
//! - [`CoreError`] — unified error type
//! - [`Config`] — validated configuration
//! - [`SafePath`] — path traversal-resistant relative path

mod config;
mod error;
mod safe_path;

pub use config::Config;
pub use error::{CoreError, Result};
pub use safe_path::SafePath;