summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2021-10-24 22:40:08 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2021-10-24 23:58:03 +0200
commita1a185370da27f2cc3df84d3a8d7141f9ce7db16 (patch)
tree6904f6f0549e89d160cbe635713e2864df25c21a /Cargo.lock
parent524985f9449eb2f3a1d01b5f88dc74123d40c43a (diff)
downloadrebel-a1a185370da27f2cc3df84d3a8d7141f9ce7db16.tar
rebel-a1a185370da27f2cc3df84d3a8d7141f9ce7db16.zip
Split defintions used by both runner and executor into separate crate
Also get rid of the Runner trait - different runner implementations do not make sense with our current design.
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock10
1 files changed, 9 insertions, 1 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 1c3d6bc..9cee169 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -747,13 +747,13 @@ dependencies = [
"digest 0.9.0",
"enum-kinds",
"handlebars",
- "hex",
"indoc",
"ipc-channel",
"lazy_static",
"libc",
"nix",
"olpc-cjson",
+ "rebel-common",
"regex",
"scoped-tls-hkt",
"serde",
@@ -765,6 +765,14 @@ dependencies = [
]
[[package]]
+name = "rebel-common"
+version = "0.1.0"
+dependencies = [
+ "hex",
+ "serde",
+]
+
+[[package]]
name = "redox_syscall"
version = "0.2.10"
source = "registry+https://github.com/rust-lang/crates.io-index"