cell_model/lib.rs
1// SPDX-License-Identifier: MIT
2// Copyright (c) 2025 Leif Rydenfalk – https://github.com/Leif-Rydenfalk/cell
3
4#![cfg_attr(not(feature = "std"), no_std)]
5
6extern crate alloc;
7
8pub mod bridge;
9pub mod config;
10pub mod error;
11pub mod io;
12pub mod macro_coordination;
13pub mod manifest;
14pub mod ops;
15pub mod protocol;
16pub mod schema;
17pub mod vesicle;
18
19// Re-export common types for convenience
20pub use error::Error;
21// Re-export rkyv to ensure availability for derived traits
22pub use rkyv;