Increase TOKEN_LIMIT for hir-expand

This commit is contained in:
Wei Xu 2024-10-18 17:36:24 -07:00 committed by GitHub
parent 0790356a0c
commit 0590422812
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -35,7 +35,7 @@
/// an error will be emitted.
///
/// Actual max for `analysis-stats .` at some point: 30672.
static TOKEN_LIMIT: Limit = Limit::new(1_048_576);
static TOKEN_LIMIT: Limit = Limit::new(2_097_152);
#[derive(Debug, Clone, Eq, PartialEq)]
pub enum TokenExpander {