From 5601fb40f8b36bd7b007629c1cbfa568936f85c9 Mon Sep 17 00:00:00 2001 From: Yuya Nishihara Date: Tue, 9 Jul 2024 20:51:05 +0900 Subject: [PATCH] cargo: add "bstr" dependency I'm going to replace some Debug impls with BStr, and we already depend on "bstr" through "gix". --- Cargo.lock | 1 + Cargo.toml | 1 + lib/Cargo.toml | 1 + 3 files changed, 3 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 1f16cb165..b23ea28cb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1910,6 +1910,7 @@ dependencies = [ "async-trait", "backoff", "blake2", + "bstr", "chrono", "config", "criterion", diff --git a/Cargo.toml b/Cargo.toml index 60efdbdb3..056f46fe5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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", diff --git a/lib/Cargo.toml b/lib/Cargo.toml index dc9e1bc2e..575033178 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -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 }