2020-12-22 22:33:29 -05:00
|
|
|
#![warn(
|
|
|
|
unused_extern_crates,
|
|
|
|
rust_2018_idioms,
|
|
|
|
clippy::cast_possible_truncation,
|
|
|
|
clippy::cast_sign_loss,
|
|
|
|
clippy::fallible_impl_from,
|
|
|
|
clippy::cast_precision_loss,
|
|
|
|
clippy::cast_possible_wrap,
|
|
|
|
clippy::dbg_macro
|
|
|
|
)]
|
2021-01-04 22:08:36 -05:00
|
|
|
#![cfg_attr(not(test), warn(clippy::unwrap_used))]
|
2020-12-22 22:33:29 -05:00
|
|
|
#![forbid(unsafe_code)]
|
2021-01-04 22:08:36 -05:00
|
|
|
#![allow(
|
|
|
|
non_snake_case,
|
|
|
|
missing_debug_implementations,
|
|
|
|
missing_copy_implementations
|
|
|
|
)]
|
2020-11-24 00:49:47 -05:00
|
|
|
|
2021-02-21 18:24:11 -05:00
|
|
|
pub mod asb;
|
2020-10-20 22:01:10 -04:00
|
|
|
pub mod bitcoin;
|
2021-02-10 17:59:24 -05:00
|
|
|
pub mod cli;
|
2020-12-22 23:17:27 -05:00
|
|
|
pub mod database;
|
2021-03-16 23:55:42 -04:00
|
|
|
pub mod env;
|
2021-02-04 00:42:14 -05:00
|
|
|
pub mod fs;
|
2021-03-04 21:37:51 -05:00
|
|
|
pub mod kraken;
|
2020-10-26 21:11:03 -04:00
|
|
|
pub mod monero;
|
2021-03-03 21:43:06 -05:00
|
|
|
pub mod network;
|
2021-01-04 22:08:36 -05:00
|
|
|
pub mod protocol;
|
2021-01-07 20:04:48 -05:00
|
|
|
pub mod seed;
|
2021-04-21 21:33:36 -04:00
|
|
|
pub mod tor;
|
2020-10-15 18:14:39 -04:00
|
|
|
|
2021-02-17 21:33:50 -05:00
|
|
|
mod monero_ext;
|