cargo fix

This commit is contained in:
realbigsean 2022-02-18 18:34:17 -07:00
parent de44b300c0
commit 7125f0e3c6
No known key found for this signature in database
GPG Key ID: B372B64D866BF8CC
4 changed files with 4 additions and 10 deletions

View File

@ -1,7 +1,7 @@
use crate::{BLSFieldElement, Blob, EthSpec, SignedBeaconBlock};
use crate::{Blob, EthSpec, SignedBeaconBlock};
use serde_derive::{Deserialize, Serialize};
use ssz_derive::{Decode, Encode};
use ssz_types::{FixedVector, VariableList};
use ssz_derive::{Encode};
use ssz_types::{VariableList};
use tree_hash::TreeHash;
use tree_hash_derive::TreeHash;

View File

@ -1,4 +1,4 @@
use crate::{ChainSpec, Epoch, Fork};
use crate::{ChainSpec, Epoch};
use serde_derive::{Deserialize, Serialize};
use std::convert::TryFrom;
use std::fmt::{self, Display, Formatter};

View File

@ -3,12 +3,7 @@ use crate::*;
use derivative::Derivative;
use serde_derive::{Deserialize, Serialize};
use ssz::{Decode, DecodeError, Encode};
use ssz_derive::{Decode, Encode};
use ssz_types::VariableList;
use superstruct::superstruct;
use test_random_derive::TestRandom;
use tree_hash::TreeHash;
use tree_hash_derive::TreeHash;
//TODO: is there a way around this newtype
#[derive(Derivative, Debug, Clone, Serialize, Deserialize)]

View File

@ -94,7 +94,6 @@ pub mod sqlite;
pub use kzg_commitment::KZGCommitment;
use ethereum_types::{H160, H256};
use serde::Serialize;
pub use crate::aggregate_and_proof::AggregateAndProof;
pub use crate::attestation::{Attestation, Error as AttestationError};