Skip to content

Commit

Permalink
chore(deps): upgrade fvm and cid (#5015)
Browse files Browse the repository at this point in the history
  • Loading branch information
hanabi1224 authored Nov 28, 2024
1 parent 0fc577e commit 3d6ea59
Show file tree
Hide file tree
Showing 54 changed files with 690 additions and 966 deletions.
4 changes: 4 additions & 0 deletions .clippy.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ path = "std::sync::Mutex"
reason = """the standard library synchronization primitives are poisoned when aquiring threads panic.
use parking_lot::Mutex instead to silently ignore panics."""

[[disallowed-types]]
path = "multihash_codetable::Code"
reason = """use `crate::utils::multihash::MultihashCode` instead which has `Identity` code back-filled."""

[[disallowed-methods]]
path = "tempfile::NamedTempFile::new"
reason = """The temporary files created by this method are not persistable if the temporary directory lives on a different filesystem than the target directory. While it is valid in other contexts (if not persisting files), it was misused many times and so we are banning it. Consider using `tempfile::NamedTempFile::new_in` or `tempfile::NamedTempFile::Builder"""
Loading

0 comments on commit 3d6ea59

Please sign in to comment.