Skip to content

Commit

Permalink
chore: use a specific Rust nightly version (filecoin-project#541)
Browse files Browse the repository at this point in the history
  • Loading branch information
vmx authored May 10, 2022
1 parent 6a3dec1 commit 26c6f4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions ipld/amt/benches/amt_benchmark.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,11 @@ impl Serialize for BenchData {
}

impl<'de> Deserialize<'de> for BenchData {
#[allow(clippy::let_unit_value)]
fn deserialize<D>(deserializer: D) -> Result<Self, <D as Deserializer<'de>>::Error>
where
D: Deserializer<'de>,
{
let _s: () = Deserialize::deserialize(deserializer)?;

Deserialize::deserialize(deserializer)?;
Ok(Self::default())
}
}
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nightly
nightly-2022-05-09

0 comments on commit 26c6f4c

Please sign in to comment.