commit | 8db409c8ae26e12ffda041688347ea7aee59d38d | [log] [tgz] |
---|---|---|
author | James Farrell <[email protected]> | Thu May 09 23:05:32 2024 +0000 |
committer | Automerger Merge Worker <[email protected]> | Thu May 09 23:05:32 2024 +0000 |
tree | d410ca28f07fe915eca0d218f39d99662e25dbfb | |
parent | 4d7f334de8424f0d0d2be8d8263f8e8de6041b83 [diff] | |
parent | 5dc5050123e0158d2426302978e486be89f08c14 [diff] |
Update Android.bp by running cargo_embargo am: bf512f893a am: 5dc5050123 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/predicates/+/3080496 Change-Id: I5ff63741d26f115b049ff3849359d585b5141686 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.