stratum-apps 0.4.0

Complete Stratum V2 application development kit - all utilities in one crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Configuration management helpers for SV2 applications
//!
//! This module provides utilities for:
//! - Parsing configuration files (TOML, etc.)
//! - Handling coinbase output specifications
//! - Setting up logging and tracing
//!
//! Originally from the `config_helpers_sv2` crate.

mod coinbase_output;
pub use coinbase_output::{CoinbaseRewardScript, Error as CoinbaseOutputError};

pub mod logging;

mod toml;
pub use toml::{duration_from_toml, opt_path_from_toml};