diff options
| author | Eric Huss <eric@huss.org> | 2021-06-23 07:41:34 -0700 |
|---|---|---|
| committer | Eric Huss <eric@huss.org> | 2021-06-23 07:41:34 -0700 |
| commit | d296ea09d3f2453bad91cb4d6f00b71084e0d282 (patch) | |
| tree | 627b09e194d4975654594c733e2015a7abda5222 | |
| parent | faa6461d554562a9311ebe69577886d6169851b2 (diff) | |
| download | rust-d296ea09d3f2453bad91cb4d6f00b71084e0d282.tar.gz rust-d296ea09d3f2453bad91cb4d6f00b71084e0d282.zip | |
Add bstr to rustc-workspace-hack for rustfmt/cargo.
| -rw-r--r-- | Cargo.lock | 1 | ||||
| -rw-r--r-- | src/tools/rustc-workspace-hack/Cargo.toml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock index f2c834d142f..17378cb4a2d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3571,6 +3571,7 @@ dependencies = [ name = "rustc-workspace-hack" version = "1.0.0" dependencies = [ + "bstr", "byteorder", "crossbeam-utils 0.8.3", "libc", diff --git a/src/tools/rustc-workspace-hack/Cargo.toml b/src/tools/rustc-workspace-hack/Cargo.toml index d39cb597b21..4a4b26da54c 100644 --- a/src/tools/rustc-workspace-hack/Cargo.toml +++ b/src/tools/rustc-workspace-hack/Cargo.toml @@ -61,6 +61,7 @@ features = [ ] [dependencies] +bstr = { version = "0.2.13", features = ["default"] } byteorder = { version = "1", features = ['default', 'std'] } curl-sys = { version = "0.4.13", features = ["http2", "libnghttp2-sys"], optional = true } crossbeam-utils = { version = "0.8.0", features = ["nightly"] } |
