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:
parent
ac2bddbc3d
commit
5601fb40f8
3 changed files with 3 additions and 0 deletions
1
Cargo.lock
generated
1
Cargo.lock
generated
|
@ -1910,6 +1910,7 @@ dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"backoff",
|
"backoff",
|
||||||
"blake2",
|
"blake2",
|
||||||
|
"bstr",
|
||||||
"chrono",
|
"chrono",
|
||||||
"config",
|
"config",
|
||||||
"criterion",
|
"criterion",
|
||||||
|
|
|
@ -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",
|
||||||
|
|
|
@ -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 }
|
||||||
|
|
Loading…
Reference in a new issue