fabryk_core/lib.rs
1//! # fabryk-core
2//!
3//! Core types, traits, and errors for Fabryk knowledge fabric.
4//!
5//! This crate provides the foundational abstractions used across all Fabryk components:
6//! - Knowledge item types and metadata
7//! - Partition and tag definitions
8//! - Core traits for storage, query, and ACL
9//! - Common error types
10//! - Identity and permission types
11
12#![warn(missing_docs)]
13#![warn(clippy::all)]
14#![forbid(unsafe_code)]
15
16pub mod error;
17pub mod identity;
18pub mod item;
19pub mod partition;
20pub mod tag;
21pub mod traits;
22
23pub use error::{Error, Result};