Skip to content

Commit

Permalink
[internal] Move bazel_protos to the top level, since they are not pro…
Browse files Browse the repository at this point in the history
…cess_execution specifc. (#12228)

Moves the `bazel_protos` crate to the top level, since it is depended on by a few different crates that are oblivious to process execution, including the `fs/store` crate.
  • Loading branch information
stuhood authored Jun 18, 2021
1 parent 0607381 commit 8824cc3
Show file tree
Hide file tree
Showing 48 changed files with 9 additions and 9 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ publish = false

[dependencies]
bytes = "1.0"
hashing = { path = "../../hashing" }
hashing = { path = "../hashing" }
prost = "0.7"
prost-build = "0.7"
prost-types = "0.7"
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/rust/engine/fs/brfs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = [ "Pants Build <pantsbuild@gmail.com>" ]
publish = false

[dependencies]
bazel_protos = { path = "../../process_execution/bazel_protos" }
bazel_protos = { path = "../../bazel_protos" }
clap = "2"
dirs-next = "2"
env_logger = "0.5.4"
Expand Down
2 changes: 1 addition & 1 deletion src/rust/engine/fs/fs_util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = [ "Pants Build <pantsbuild@gmail.com>" ]
publish = false

[dependencies]
bazel_protos = { path = "../../process_execution/bazel_protos" }
bazel_protos = { path = "../../bazel_protos" }
bytes = "1.0"
clap = "2"
env_logger = "0.5.4"
Expand Down
2 changes: 1 addition & 1 deletion src/rust/engine/fs/store/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2018"
[dependencies]
async-stream = "0.3"
async-trait = "0.1"
bazel_protos = { path = "../../process_execution/bazel_protos" }
bazel_protos = { path = "../../bazel_protos" }
bytes = "1.0"
concrete_time = { path = "../../concrete_time" }
grpc_util = { path = "../../grpc_util" }
Expand Down
2 changes: 1 addition & 1 deletion src/rust/engine/process_execution/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ publish = false
async-trait = "0.1"
walkdir = "2"
async_semaphore = { path = "../async_semaphore" }
bazel_protos = { path = "bazel_protos" }
bazel_protos = { path = "../bazel_protos" }
bytes = "1.0"
derivative = "2.1.1"
grpc_util = { path = "../grpc_util" }
Expand Down
2 changes: 1 addition & 1 deletion src/rust/engine/process_executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = [ "Pants Build <pantsbuild@gmail.com>" ]
publish = false

[dependencies]
bazel_protos = { path = "../process_execution/bazel_protos" }
bazel_protos = { path = "../bazel_protos" }
clap = "2"
dirs-next = "2"
env_logger = "0.5.4"
Expand Down
2 changes: 1 addition & 1 deletion src/rust/engine/testutil/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ publish = false

[dependencies]
async-stream = "0.3"
bazel_protos = { path = "../process_execution/bazel_protos" }
bazel_protos = { path = "../bazel_protos" }
bytes = "1.0"
grpc_util = { path = "../grpc_util" }
fs = { path = "../fs" }
Expand Down
2 changes: 1 addition & 1 deletion src/rust/engine/testutil/local_execution_server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = [ "Pants Build <pantsbuild@gmail.com>" ]
publish = false

[dependencies]
bazel_protos = { path = "../../process_execution/bazel_protos" }
bazel_protos = { path = "../../bazel_protos" }
mock = { path = "../mock" }
clap = "2"
structopt = "0.2.18"
Expand Down
2 changes: 1 addition & 1 deletion src/rust/engine/testutil/mock/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ publish = false

[dependencies]
async-stream = "0.3"
bazel_protos = { path = "../../process_execution/bazel_protos" }
bazel_protos = { path = "../../bazel_protos" }
bytes = "1.0"
futures = "0.3"
hashing = { path = "../../hashing" }
Expand Down

0 comments on commit 8824cc3

Please sign in to comment.