Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
examples/ | 25-Apr-2025 | - | 14 | 11 | ||
patches/ | 25-Apr-2025 | - | 118 | 108 | ||
src/ | 25-Apr-2025 | - | 3,690 | 2,231 | ||
.cargo-checksum.json | D | 25-Apr-2025 | 2.6 KiB | 1 | 1 | |
Android.bp | D | 25-Apr-2025 | 1.5 KiB | 67 | 62 | |
Cargo.lock | D | 25-Apr-2025 | 3.6 KiB | 141 | 123 | |
Cargo.toml | D | 25-Apr-2025 | 2.9 KiB | 138 | 119 | |
LICENSE | D | 25-Apr-2025 | 11.1 KiB | 202 | 169 | |
LICENSE-APACHE | D | 25-Apr-2025 | 11.1 KiB | 202 | 169 | |
LICENSE-MIT | D | 25-Apr-2025 | 1 KiB | 20 | 16 | |
METADATA | D | 25-Apr-2025 | 404 | 18 | 17 | |
MODULE_LICENSE_APACHE2 | D | 25-Apr-2025 | 0 | |||
README.md | D | 25-Apr-2025 | 1.1 KiB | 46 | 27 | |
TEST_MAPPING | D | 25-Apr-2025 | 78 | 8 | 7 | |
cargo_embargo.json | D | 25-Apr-2025 | 88 | 9 | 8 |
README.md
1# predicates-rs 2 3> An implementation of **boolean-valued predicate functions** in Rust. 4 5[](https://docs.rs/predicates) 6 7[](https://crates.io/crates/predicates) 8 9[Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md) 10 11 12## Usage 13 14First, add this to your `Cargo.toml`: 15 16```toml 17[dependencies] 18predicates = "3.0.4" 19``` 20 21Next, add this to your crate: 22 23```rust 24extern crate predicates; 25 26use predicates::prelude::*; 27``` 28 29For more information on using predicates, look at the 30[documentation](https://docs.rs/predicates) 31 32 33## License 34 35`predicates-rs` is distributed under the terms of both the MIT license and the 36Apache License (Version 2.0). 37 38See LICENSE-APACHE, and LICENSE-MIT for details. 39 40 41## Credits 42 43Big thanks to [futures-rs](https://github.com/alexcrichton/futures-rs), whose 44slick API design informed a lot of decisions made on the API design of this 45library. 46