commit | b8583b47097382d31f0fc5b2f739cd93438f7414 | [log] [tgz] |
---|---|---|
author | James Farrell <[email protected]> | Tue Aug 06 22:21:16 2024 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue Aug 06 22:21:16 2024 +0000 |
tree | 5353359fb151c3b7c0c86f149d686a273379b329 | |
parent | 81076caf4baca6178b1f1220f314296cfb5b2944 [diff] | |
parent | 4d12d75c8f5d8ec88bdd8b7f86ac3291a5cca895 [diff] |
Update Android.bp by running cargo_embargo am: 4d12d75c8f Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/predicates/+/3208384 Change-Id: Ia1aee8155d647580d9a5bf6a560259573f86b123 Signed-off-by: Automerger Merge Worker <[email protected]>
An implementation of boolean-valued predicate functions in Rust.
First, add this to your Cargo.toml
:
[dependencies] predicates = "3.0.4"
Next, add this to your crate:
extern crate predicates; use predicates::prelude::*;
For more information on using predicates, look at the documentation
predicates-rs
is distributed under the terms of both the MIT license and the Apache License (Version 2.0).
See LICENSE-APACHE, and LICENSE-MIT for details.
Big thanks to futures-rs, whose slick API design informed a lot of decisions made on the API design of this library.