mirror of
https://github.com/martinvonz/jj.git
synced 2024-11-24 06:19:42 +00:00
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",
|
||||
"backoff",
|
||||
"blake2",
|
||||
"bstr",
|
||||
"chrono",
|
||||
"config",
|
||||
"criterion",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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 }
|
||||
|
|
Loading…
Reference in a new issue