xmr-btc-swap/swap/src/lib.rs

32 lines
620 B
Rust
Raw Normal View History

#![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
)]
#![cfg_attr(not(test), warn(clippy::unwrap_used))]
#![forbid(unsafe_code)]
#![allow(
non_snake_case,
missing_debug_implementations,
missing_copy_implementations
)]
2020-11-24 05:49:47 +00:00
2020-10-21 02:01:10 +00:00
pub mod bitcoin;
pub mod cli;
pub mod database;
2021-01-29 06:27:50 +00:00
pub mod execution_params;
pub mod fs;
pub mod monero;
2021-02-11 04:07:01 +00:00
pub mod nectar;
pub mod protocol;
pub mod seed;
2020-12-04 05:27:17 +00:00
pub mod trace;
2021-02-15 01:54:10 +00:00
mod network;
mod serde_peer_id;