2020-12-23 14:33:29 +11: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-05 14:08:36 +11:00
|
|
|
#![cfg_attr(not(test), warn(clippy::unwrap_used))]
|
2020-12-23 14:33:29 +11:00
|
|
|
#![forbid(unsafe_code)]
|
2021-01-05 14:08:36 +11:00
|
|
|
#![allow(
|
|
|
|
non_snake_case,
|
|
|
|
missing_debug_implementations,
|
|
|
|
missing_copy_implementations
|
|
|
|
)]
|
2020-11-24 16:49:47 +11:00
|
|
|
|
2021-02-22 10:24:11 +11:00
|
|
|
pub mod asb;
|
2020-10-21 13:01:10 +11:00
|
|
|
pub mod bitcoin;
|
2021-02-11 09:59:24 +11:00
|
|
|
pub mod cli;
|
2020-12-23 15:17:27 +11:00
|
|
|
pub mod database;
|
2021-03-17 14:55:42 +11:00
|
|
|
pub mod env;
|
2021-02-04 16:42:14 +11:00
|
|
|
pub mod fs;
|
2021-03-05 13:37:51 +11:00
|
|
|
pub mod kraken;
|
2020-10-27 12:11:03 +11:00
|
|
|
pub mod monero;
|
2021-03-04 13:43:06 +11:00
|
|
|
pub mod network;
|
2021-01-05 14:08:36 +11:00
|
|
|
pub mod protocol;
|
2021-01-08 12:04:48 +11:00
|
|
|
pub mod seed;
|
2021-04-22 11:33:36 +10:00
|
|
|
pub mod tor;
|
2020-10-16 09:14:39 +11:00
|
|
|
|
2021-02-18 13:33:50 +11:00
|
|
|
mod monero_ext;
|