Bump crate resolution limit for large projects

Change-Id: Ie0221e5bcfd1779cd5e241f96b4489e5bd3854c1
This commit is contained in:
Benjamin Brittain 2020-02-14 16:15:27 -05:00
parent b2b94cbf71
commit 843f03a3d2

View File

@ -146,7 +146,7 @@ where
ReachedFixedPoint::Yes => break,
ReachedFixedPoint::No => i += 1,
}
if i == 1000 {
if i == 10000 {
log::error!("name resolution is stuck");
break;
}