commit | 4f6dfc6c29f5b1d94a3ab024cc60a78a33326819 | [log] [tgz] |
---|---|---|
author | Lukasz Anforowicz <lukasza@google.com> | Thu Apr 14 14:15:26 2022 -0700 |
committer | Copybara-Service <copybara-worker@google.com> | Thu Apr 14 14:15:54 2022 -0700 |
tree | 433045fe7f31241aa05a1f8ad18ebff214f014d8 | |
parent | 9579d70123e55913fa8bd0f1cfcb1eccf78d0773 [diff] |
Update itertools dependency from v0_9 to v0_10 Among other things this will allow writing assert!(ir.top_level_item_ids().contains(&record.id)); instead of assert!(ir.top_level_item_ids().find(|&&id| id == record.id).is_some()); in ir_from_cc_test.rs (in a follow-up CL). (`Itertools::contains` method is not provided in the older version of the itertools crate.) PiperOrigin-RevId: 441852466