Vendor dependencies

Let's see how I like this workflow.
This commit is contained in:
John Doty 2022-12-19 08:27:18 -08:00
parent 34d1830413
commit 9c435dc440
7500 changed files with 1665121 additions and 99 deletions

44
vendor/assert_matches/README.md vendored Normal file
View file

@ -0,0 +1,44 @@
# assert_matches
Provides a macro, `assert_matches`, which tests whether a value
matches a given pattern, causing a panic if the match fails.
[Documentation](https://docs.rs/assert_matches/)
```rust
#[macro_use] extern crate assert_matches;
#[derive(Debug)]
enum Foo {
A(i32),
B(i32),
}
let a = Foo::A(1);
assert_matches!(a, Foo::A(_));
assert_matches!(a, Foo::A(i) if i > 0);
```
To include in your project, only when tests are compiled, add the following
to your Cargo.toml:
```toml
[dev-dependencies]
assert_matches = "1.5"
```
And add the following to your crate root:
```rust
#[cfg(test)] #[macro_use]
extern crate assert_matches;
```
## License
`assert_matches` 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.