tree: 829d15a2eebadeaff79f48b33a572907a160b58b [path history] [tgz]
  1. examples/
  2. src/
  3. tests/
  4. .cargo-checksum.json
  5. azure-pipelines.yml
  6. Cargo.lock
  7. Cargo.toml
  8. CHANGELOG.md
  9. committed.toml
  10. CONTRIBUTING.md
  11. LICENSE-APACHE
  12. LICENSE-MIT
  13. OWNERS
  14. README.md
  15. release.toml
third_party/rust_crates/vendor/predicates/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.7"

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.