mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-03-25 23:48:22 -04:00
17 lines
372 B
Rust
17 lines
372 B
Rust
#![warn(
|
|
unused_extern_crates,
|
|
missing_debug_implementations,
|
|
missing_copy_implementations,
|
|
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
|
|
)]
|
|
#![forbid(unsafe_code)]
|
|
|
|
pub mod monerod;
|
|
pub mod wallet;
|