From e55a4f9963db56bf06c0c18c7af67fc08d2c0b8d Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Tue, 13 Sep 2022 12:17:40 -0700 Subject: [PATCH] build: optimize bitfield operations in tests (#643) This isn't as big of an issue as hashing, but it still matters for tests. --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 7d4b1a3e6..076a589f1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -98,6 +98,9 @@ incremental = false ## So tests don't take ages. +[profile.dev.package."fvm_ipld_bitfield"] +opt-level = 2 + [profile.dev.package."num-bigint"] opt-level = 2