xmr-btc-swap/swap/src/lib.rs
Franck Royer 33db688e3a
Bob peer id can be retrieved from the DB
This remove branches where Alice resumes from the DB but cannot contact
Bob.
2021-01-22 17:19:20 +11:00

29 lines
581 B
Rust

#![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
)]
pub mod bitcoin;
pub mod config;
pub mod database;
pub mod monero;
pub mod network;
pub mod protocol;
pub mod seed;
pub mod trace;
mod fs;
mod serde_peer_id;