commit | 69e22e3f433892cb1412e8659bb625b2a025b9e4 | [log] [tgz] |
---|---|---|
author | James Farrell <[email protected]> | Fri Oct 11 15:41:18 2024 +0000 |
committer | James Farrell <[email protected]> | Fri Oct 11 15:41:18 2024 +0000 |
tree | deec95d17de1e4809f26d579805a7e08a092bb7d | |
parent | 09c085d6ce9644c24093e77659ed6bb33b493a5c [diff] |
Migrate 20 crates to monorepo oneshot-uniffi minimal-lexical num_enum num_enum_derive num-complex num-derive paste pin-utils predicates protobuf-parse protobuf-support quote remain rustc-demangle-capi rustix shared_child thiserror-impl threadpool tikv-jemalloc-sys tonic Bug: http://b/339424309 Test: treehugger Change-Id: Ice413aefb18044d997d3db2f45bb86ae4295be68
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.