Downgrade rpds to last Rust 2018 version

This will allow difftastic to build on earlier rust versions, and is
also a ~2% instruction count reduction on slow_before.rs.
pull/198/head
Wilfred Hughes 2022-03-28 22:23:42 +07:00
parent f26ca24df7
commit d36224229e
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated

@ -435,9 +435,9 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
[[package]] [[package]]
name = "rpds" name = "rpds"
version = "0.11.0" version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4ef5140bcb576bfd6d56cd2de709a7d17851ac1f3805e67fe9d99e42a11821f" checksum = "054e417ded02a19ae192c8c89412eaec7d1c2cdd826aa412565761d86ca6315e"
dependencies = [ dependencies = [
"archery", "archery",
] ]

@ -39,7 +39,7 @@ walkdir = "2.3.2"
term_size = "0.3.2" term_size = "0.3.2"
const_format = "0.2.22" const_format = "0.2.22"
owo-colors = "3.2.0" owo-colors = "3.2.0"
rpds = "0.11.0" rpds = "0.10.0"
wu-diff = "0.1.2" wu-diff = "0.1.2"
[dev-dependencies] [dev-dependencies]