agent/rustjail: add tempfile crate as depedency

Add tempfile crate as depedency, it will be used in the following
commits to create temporary directories for unit testing.

Signed-off-by: Julio Montes <julio.montes@intel.com>
This commit is contained in:
Julio Montes 2020-09-09 10:39:23 -05:00
parent d756f52c73
commit 3dc9452bc6
2 changed files with 2 additions and 0 deletions

1
src/agent/Cargo.lock generated
View File

@ -661,6 +661,7 @@ dependencies = [
"serde_json",
"slog",
"slog-scope",
"tempfile",
]
[[package]]

View File

@ -25,3 +25,4 @@ path-absolutize = "1.2.0"
dirs = "3.0.1"
anyhow = "1.0.32"
cgroups = { git = "https://github.com/kata-containers/cgroups-rs", tag = "0.1.1"}
tempfile = "3.1.0"