-
Notifications
You must be signed in to change notification settings - Fork 370
/
Copy pathlib.rs
53 lines (48 loc) · 1.2 KB
/
lib.rs
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#![forbid(unsafe_code)]
#![deny(clippy::all)]
#![deny(
warnings,
// missing_docs,
trivial_casts,
trivial_numeric_casts,
unused_import_braces,
unused_qualifications,
rust_2018_idioms
)]
//! Implementation of the following ICS modules:
//!
//! - ICS 02: Client
//! - ICS 03: Connection
//! - ICS 04: Channel
//! - ICS 05: Port
//! - ICS 07: Tendermint Client
//! - ICS 18: Basic relayer functions
//! - ICS 20: Fungible Token
//! - ICS 23: Vector Commitment Scheme
//! - ICS 24: Host Requirements
//! - ICS 26: Routing
pub mod address;
pub mod events;
pub mod handler;
pub mod ics02_client;
pub mod ics03_connection;
pub mod ics04_channel;
pub mod ics05_port;
pub mod ics07_tendermint;
pub mod ics18_relayer;
pub mod ics20_fungible_token_transfer;
pub mod ics23_commitment;
pub mod ics24_host;
pub mod ics26_routing;
pub mod keys;
pub mod macros;
pub mod proofs;
pub mod tx_msg;
/// Re-export of ICS 002 Height domain type
pub type Height = crate::ics02_client::height::Height;
#[cfg(test)]
mod test;
#[cfg(any(test, feature = "mocks"))]
pub mod test_utils;
#[cfg(any(test, feature = "mocks"))]
pub mod mock; // Context mock, the underlying host chain, and client types: for testing all handlers.