cardano 0.4.0

no_std-first Cardano protocol building blocks for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![no_std]
#![forbid(unsafe_code)]
//! no_std-first Cardano protocol building blocks for Rust.
//!
//! Most users should start with the repository README and release plan:
//!
//! - <https://github.com/valkyoth/cardano>
//! - <https://github.com/valkyoth/cardano/blob/main/docs/RELEASE_PLAN.md>

pub use cardano_valkyoth_primitives as primitives;

/// Stable Cardano error model re-exported by the facade crate.
pub mod error {
    pub use cardano_valkyoth_primitives::{ErrorCategory, ErrorCode, PrimitiveError};
}

/// Current crate version.
pub const VERSION: &str = env!("CARGO_PKG_VERSION");