ok/jj
1
0
Fork 0
forked from mirrors/jj

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", "async-trait",
"backoff", "backoff",
"blake2", "blake2",
"bstr",
"chrono", "chrono",
"config", "config",
"criterion", "criterion",

View file

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

View file

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