commit | d0ec45c3eba9f884d92d86714cc884f78835f7bb | [log] [tgz] |
---|---|---|
author | James Farrell <jamesfarrell@google.com> | Tue May 21 14:37:32 2024 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Tue May 21 14:37:32 2024 +0000 |
tree | 20c7f5105a0083a998bf1466ebad894220f30160 | |
parent | 5dc5050123e0158d2426302978e486be89f08c14 [diff] | |
parent | 8d96e303896a78100b7346fd1f33f743fb13de38 [diff] |
Update Android.bp by running cargo_embargo am: 8d96e30389 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/predicates/+/3095494 Change-Id: I29ec105094ce92297378135a9c1d96d044c8a3ea Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
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.