diff options
| author | Thomas Otto <th1000s@posteo.net> | 2024-11-14 23:22:24 +0100 |
|---|---|---|
| committer | Thomas Otto <th1000s@posteo.net> | 2024-11-20 23:45:55 +0100 |
| commit | 4ea8f9ab6038b934a03c6370e5c3e45da0466fe5 (patch) | |
| tree | 3768eed6dd0e0b866280780fb4a5735da14582aa /Cargo.lock | |
| parent | 1dd28e7b51a913fc28eefc59d01f3b78f1146850 (diff) | |
testability: add pretty_assertions, git mocks
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 23 |
1 files changed, 23 insertions, 0 deletions
@@ -384,6 +384,12 @@ dependencies = [ ] [[package]] +name = "diff" +version = "0.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" + +[[package]] name = "dirs" version = "5.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -615,6 +621,7 @@ dependencies = [ "lazy_static", "palette", "pathdiff", + "pretty_assertions", "regex", "rstest", "serde", @@ -1078,6 +1085,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" [[package]] +name = "pretty_assertions" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d" +dependencies = [ + "diff", + "yansi", +] + +[[package]] name = "proc-macro-crate" version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1932,3 +1949,9 @@ checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" dependencies = [ "linked-hash-map", ] + +[[package]] +name = "yansi" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" |
