cargo: add "bstr" dependency

I'm going to replace some Debug impls with BStr, and we already depend on
"bstr" through "gix".
This commit is contained in:
Yuya Nishihara 2024-07-09 20:51:05 +09:00
parent ac2bddbc3d
commit 5601fb40f8
3 changed files with 3 additions and 0 deletions

1
Cargo.lock generated
View file

@ -1910,6 +1910,7 @@ dependencies = [
"async-trait",
"backoff",
"blake2",
"bstr",
"chrono",
"config",
"criterion",

View file

@ -23,6 +23,7 @@ assert_matches = "1.5.0"
async-trait = "0.1.81"
backoff = "0.4.0"
blake2 = "0.10.6"
bstr = "1.9.1"
cargo_metadata = "0.17.0"
clap = { version = "4.5.9", features = [
"derive",

View file

@ -36,6 +36,7 @@ version_check = { workspace = true }
async-trait = { workspace = true }
backoff = { workspace = true }
blake2 = { workspace = true }
bstr = { workspace = true }
chrono = { workspace = true }
config = { workspace = true }
digest = { workspace = true }