xrpl-rust 1.1.0

A 100% Rust library to interact with the XRPL
Documentation
#[cfg(feature = "cli")]
#[allow(clippy::result_large_err)]
fn main() -> Result<(), xrpl::cli::CliError> {
    xrpl::cli::run()
}

#[cfg(not(feature = "cli"))]
fn main() {
    #[cfg(feature = "std")]
    {
        eprintln!("CLI feature is not enabled. Recompile with --features cli");
        std::process::exit(1);
    }

    #[cfg(not(feature = "std"))]
    {
        panic!("CLI feature is not enabled. Recompile with --features cli");
    }
}