tree: 8fe2aec3327ed2edf3fe7eb9e9ec32823d2608dd [path history] [tgz]
  1. examples/
  2. src/
  3. .cargo-checksum.json
  4. .cargo_vcs_info.json
  5. BUILD.bazel
  6. Cargo.lock
  7. Cargo.toml
  8. Cargo.toml.orig
  9. LICENSE-APACHE
  10. LICENSE-MIT
  11. README.md
third_party/rust_crates/vendor/predicates-3.1.3/README.md

predicates-rs

An implementation of boolean-valued predicate functions in Rust.

Documentation License Crates.io

Changelog

Usage

First, add this to your Cargo.toml:

[dependencies]
predicates = "3.1.3"

Next, add this to your crate:

extern crate predicates;

use predicates::prelude::*;

For more information on using predicates, look at the documentation

License

predicates-rs is distributed under the terms of both the MIT license and the Apache License (Version 2.0).

Credits

Big thanks to futures-rs, whose slick API design informed a lot of decisions made on the API design of this library.