1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
//! Hermes: IBC Relayer CLI built in Rust
//!
//! The Hermes binary is a wrapper over the [ibc-relayer] library. This binary builds on
//! the [Abscissa] framework.
//!
//! For a comprehensive guide to using Hermes, the authoritative resource is
//! at [hermes.informal.systems].
//!
//! [ibc-relayer]: https://docs.rs/ibc-relayer
//! [Abscissa]: https://github.com/iqlusioninc/abscissa
//! [hermes.informal.systems]: https://hermes.informal.systems
// Tip: Deny warnings with `RUSTFLAGS="-D warnings"` environment variable in CI
#![forbid(unsafe_code)]
#![deny(
rust_2018_idioms,
trivial_casts,
unused_lifetimes,
unused_qualifications
)]
#![allow(deprecated)]
extern crate alloc;
pub mod application;
pub mod chain_registry;
pub mod cli_utils;
pub mod commands;
pub mod components;
pub mod conclude;
pub mod config;
pub mod entry;
pub mod error;
pub mod prelude;
pub mod tracing_handle;
/// The path to the default configuration file, relative to the home directory.
pub const DEFAULT_CONFIG_PATH: &str = ".hermes/config.toml";