tendermint-light-node 0.19.0

The Tendermint light-node wraps the light-client crate into a command-line interface tool. It can be used to initialize and start a standalone light client daemon and exposes a JSON-RPC endpoint from which you can query the current state of the light node.
Documentation
//! `version` subcommand

#![allow(clippy::never_loop)]

use super::LightNodeCmd;
use abscissa_core::{Command, Options, Runnable};

/// `version` subcommand
#[derive(Command, Debug, Default, Options)]
pub struct VersionCmd {}

impl Runnable for VersionCmd {
    /// Print version message
    fn run(&self) {
        println!("{} {}", LightNodeCmd::name(), LightNodeCmd::version());
    }
}