tree: 4130c988d35e1dee47c43232043977534260e391 [path history] [tgz]
  1. .github/
  2. examples/
  3. src/
  4. tests/
  5. .cargo-checksum.json
  6. .cargo_vcs_info.json
  7. .clog.toml
  8. azure-pipelines.yml
  9. BUILD.bazel
  10. Cargo.lock
  11. Cargo.toml
  12. Cargo.toml.orig
  13. CHANGELOG.md
  14. committed.toml
  15. CONTRIBUTING.md
  16. LICENSE-APACHE
  17. LICENSE-MIT
  18. README.md
  19. release.toml
third_party/rust_crates/vendor/predicates-1.0.8/README.md

predicates-rs

An implementation of boolean-valued predicate functions in Rust.

Build Status Documentation License Crates.io

Changelog

Usage

First, add this to your Cargo.toml:

[dependencies]
predicates = "1.0.8"

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).

See LICENSE-APACHE, and LICENSE-MIT for details.

Credits

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