p2panda-rs 0.4.0

All the things a panda needs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-License-Identifier: AGPL-3.0-or-later

//! Schemas describe the format of data used in operation fields.
mod error;
mod field_types;
#[allow(clippy::module_inception)]
mod schema;
mod schema_id;
pub mod system;

pub use error::{FieldTypeError, SchemaError, SchemaIdError};
pub use field_types::FieldType;
pub use schema::Schema;
pub use schema_id::{SchemaId, SchemaVersion};
pub use system::SYSTEM_SCHEMAS;