deps: targeted update of some dependencies

This updates encoding_rs, crossbeam-utils and crossbeam-channel. This
serves two purposes. The encoding_rs update fixes a compilation failure
on the latest nightly. The crossbeam updates are good sense and to
reduce duplicate dependencies such as cfg-if. (Although, we note that
the log crate still pulls in cfg-if 0.1, so ripgrep has a duplicate
dependency there for now. But it's very small.)

Fixes #1721, Closes #1705
This commit is contained in:
Andrew Gallant
2020-11-02 09:04:39 -05:00
parent e1ac18ef06
commit 3ef63dacbe
2 changed files with 39 additions and 25 deletions

View File

@@ -18,7 +18,7 @@ name = "ignore"
bench = false
[dependencies]
crossbeam-utils = "0.7.0"
crossbeam-utils = "0.8.0"
globset = { version = "0.4.5", path = "../globset" }
lazy_static = "1.1"
log = "0.4.5"
@@ -32,7 +32,7 @@ walkdir = "2.2.7"
version = "0.1.2"
[dev-dependencies]
crossbeam-channel = "0.4.0"
crossbeam-channel = "0.5.0"
[features]
simd-accel = ["globset/simd-accel"]