Skip to content

Commit

Permalink
Remote execution uploads files from a Store (#5499)
Browse files Browse the repository at this point in the history
  • Loading branch information
illicitonion committed Feb 22, 2018
1 parent fbff143 commit 935086b
Show file tree
Hide file tree
Showing 7 changed files with 662 additions and 188 deletions.
1 change: 1 addition & 0 deletions src/rust/engine/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions src/rust/engine/process_execution/Cargo.toml
Expand Up @@ -6,6 +6,7 @@ authors = [ "Pants Build <pantsbuild@gmail.com>" ]
[dependencies]
bazel_protos = { path = "bazel_protos" }
boxfuture = { path = "../boxfuture" }
bytes = "0.4.5"
digest = "0.6.2"
fs = { path = "../fs" }
futures = "0.1.16"
Expand All @@ -18,4 +19,5 @@ tempdir = "0.3.5"
[dev-dependencies]
bytes = "0.4.5"
mock = { path = "../testutil/mock" }
tempdir = "0.3.5"
testutil = { path = "../testutil" }
2 changes: 2 additions & 0 deletions src/rust/engine/process_execution/src/lib.rs
Expand Up @@ -12,6 +12,8 @@ extern crate mock;
extern crate protobuf;
extern crate sha2;
#[cfg(test)]
extern crate tempdir;
#[cfg(test)]
extern crate testutil;

use std::collections::BTreeMap;
Expand Down

0 comments on commit 935086b

Please sign in to comment.