commit | 09c085d6ce9644c24093e77659ed6bb33b493a5c | [log] [tgz] |
---|---|---|
author | James Farrell <[email protected]> | Thu Oct 10 17:32:22 2024 +0000 |
committer | James Farrell <[email protected]> | Thu Oct 10 17:32:22 2024 +0000 |
tree | b5cf1aebef53bd6fa145018ff8277b83b950bc1a | |
parent | b8583b47097382d31f0fc5b2f739cd93438f7414 [diff] |
Fix patch. Don't patch Cargo.lock, and don't patch ourselves. Bug: http://b/339424309 Test: treehugger Change-Id: I0459d23a1bab555ef6e8539e805e1d2bf51766df
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.