pwr-core 0.3.2

Shared types, protocol definitions, and cryptographic primitives for pwr
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod config;
pub mod error;
pub mod metadata;
pub mod project;
pub mod transaction;

// New modules for protocol-based architecture (stubs until later commits)
pub mod protocol;
pub mod frame;
pub mod crypto;
pub mod archive;
pub mod integrity;

pub use config::PwrConfig;
pub use error::{PwrError, Result};
pub use metadata::ProjectMeta;
pub use project::PROJECT_FILE;