Upgrade to correct bumpalo version in reporting Cargo

This commit is contained in:
Chad Stearns 2020-03-08 17:05:06 -04:00
parent 2eb729937e
commit b4e028a39c
2 changed files with 2 additions and 2 deletions

View file

@ -24,4 +24,4 @@ maplit = "1.0.1"
indoc = "0.3.3"
quickcheck = "0.8"
quickcheck_macros = "0.8"
bumpalo = "2.6"
bumpalo = { version = "3.2", features = ["collections"] }

View file

@ -20,7 +20,7 @@ mod test_report {
use crate::helpers::{assert_correct_variable_usage, can_expr, infer_expr, CanExprOut};
use roc_reporting::report::ReportText::{EmText, Plain, Region, Type, Url, Value};
use roc_types::subs::Content::{FlexVar, RigidVar, Structure};
use roc_types::subs::FlatType::{EmptyRecord, Record};
use roc_types::subs::FlatType::EmptyRecord;
// use roc_problem::can;
fn to_simple_report(text: ReportText) -> Report {