Ignore some clippy advice

This commit is contained in:
Greg Fitzgerald 2018-03-22 14:59:25 -06:00
parent 117ab0c141
commit fa44be2a9d
2 changed files with 2 additions and 0 deletions

View File

@ -21,6 +21,7 @@ pub struct AccountantSkel {
pub ledger: Vec<Entry>,
}
#[cfg_attr(feature = "cargo-clippy", allow(large_enum_variant))]
#[derive(Serialize, Deserialize, Debug)]
pub enum Request {
Transaction(Transaction),

View File

@ -12,6 +12,7 @@ use hash::{hash, Hash};
use entry::{create_entry_mut, Entry};
use event::Event;
#[cfg_attr(feature = "cargo-clippy", allow(large_enum_variant))]
pub enum Signal {
Tick,
Event(Event),