Skip to content

Commit 9a8369d

Browse files
committed
fix dependency declaration (#470)
1 parent 29a043b commit 9a8369d

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

git-command/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,7 @@ edition = "2018"
1111
doctest = false
1212

1313
[dependencies]
14+
bstr = "1.0.1"
15+
16+
[dev-dependencies]
1417
git-testtools = { path = "../tests/tools" }

git-command/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ pub struct Prepare {
1717
mod prepare {
1818
use std::process::{Command, Stdio};
1919

20-
use git_testtools::bstr::ByteSlice;
20+
use bstr::ByteSlice;
2121

2222
use crate::Prepare;
2323

0 commit comments

Comments
 (0)