1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-01-03 05:10:12 +02:00

deps: upgrade to base64 0.20

This commit is contained in:
Andrew Gallant 2023-01-05 08:21:49 -05:00
parent ac8fecbbf2
commit 92b35a65f8
No known key found for this signature in database
GPG Key ID: B2E3A4923F8B0D44
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View File

@ -24,9 +24,9 @@ dependencies = [
[[package]]
name = "base64"
version = "0.13.1"
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
checksum = "0ea22880d78093b0cbe17c89f64a7d457941e65759157ec6cb31a31d652b05e5"
[[package]]
name = "bitflags"

View File

@ -19,7 +19,7 @@ default = ["serde1"]
serde1 = ["base64", "serde", "serde_json"]
[dependencies]
base64 = { version = "0.13.0", optional = true }
base64 = { version = "0.20.0", optional = true }
bstr = "1.1.0"
grep-matcher = { version = "0.1.5", path = "../matcher" }
grep-searcher = { version = "0.1.8", path = "../searcher" }