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
1 file changed
tree: 433045fe7f31241aa05a1f8ad18ebff214f014d8
  1. cc_template/
  2. common/
  3. lifetime_annotations/
  4. rs_bindings_from_cc/
  5. BUILD
  6. CODE_OF_CONDUCT
  7. CONTRIBUTING
  8. LICENSE
  9. README.md
README.md

Crubit: C++/Rust Bidirectional Interop Tool

Extremely experimental interop tooling for C++ and Rust.

Please don‘t use, this is an experiment and we don’t yet know where will it take us. There will be breaking changes without warning. Unfortunately, we can't take contributions at this point.