tendermint_light_node/
lib.rs

1//! light-node
2//!
3//! The Tendermint light-node wraps the light-client crate into a command-line interface tool.
4//!
5//! It can be used to initialize and start a standalone light client daemon and exposes a JSON-RPC
6//! endpoint from which you can query the current state of the light node.
7
8// Tip: Deny warnings with `RUSTFLAGS="-D warnings"` environment variable in CI
9
10#![forbid(unsafe_code)]
11#![warn(
12    rust_2018_idioms,
13    trivial_casts,
14    unused_lifetimes,
15    unused_qualifications
16)]
17#![doc(
18    html_root_url = "https://docs.rs/tendermint-light-node/0.19.0",
19    html_logo_url = "https://raw.githubusercontent.com/informalsystems/tendermint-rs/master/img/logo-tendermint-rs_3961x4001.png"
20)]
21
22pub mod application;
23pub mod commands;
24pub mod config;
25pub mod error;
26pub mod prelude;
27pub mod rpc;