summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2021-10-12 23:05:29 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2021-10-12 23:05:49 +0200
commit855d2daea1e4d22cc9b62417875c90619e553500 (patch)
tree9d247fac92e0b617a9b2e38f5d479631023dbeef /Cargo.lock
parent0709dcf3a153b6d48c42663029aa44f2baf31274 (diff)
downloadrebel-855d2daea1e4d22cc9b62417875c90619e553500.tar
rebel-855d2daea1e4d22cc9b62417875c90619e553500.zip
context: allow passing host and target arguments when parsing tasks
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock34
1 files changed, 34 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index fea8e57..a3f963e 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3,6 +3,15 @@
version = 3
[[package]]
+name = "aho-corasick"
+version = "0.7.18"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
+dependencies = [
+ "memchr",
+]
+
+[[package]]
name = "arrayref"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -529,6 +538,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
[[package]]
+name = "memchr"
+version = "2.4.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
+
+[[package]]
name = "memoffset"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -818,10 +833,12 @@ dependencies = [
"hex",
"indoc",
"ipc-channel",
+ "lazy_static",
"libc",
"nix",
"oci-spec",
"olpc-cjson",
+ "regex",
"scoped-tls-hkt",
"serde",
"serde_json",
@@ -841,6 +858,23 @@ dependencies = [
]
[[package]]
+name = "regex"
+version = "1.5.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
+dependencies = [
+ "aho-corasick",
+ "memchr",
+ "regex-syntax",
+]
+
+[[package]]
+name = "regex-syntax"
+version = "0.6.25"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
+
+[[package]]
name = "remove_dir_all"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"