diff options
Diffstat (limited to 'crates/executor/Cargo.toml')
-rw-r--r-- | crates/executor/Cargo.toml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/crates/executor/Cargo.toml b/crates/executor/Cargo.toml new file mode 100644 index 0000000..867a9f4 --- /dev/null +++ b/crates/executor/Cargo.toml @@ -0,0 +1,24 @@ +[package] +name = "rebel" +version = "0.1.0" +authors = ["Matthias Schiffer <mschiffer@universe-factory.net>"] +license = "MIT" +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +common = { path = "../common", package = "rebel-common" } +runner = { path = "../runner", package = "rebel-runner" } + +clap = "3.0.0-beta.2" +enum-kinds = "0.5.1" +handlebars = "4.1.3" +indoc = "1.0.3" +ipc-channel = { git = "https://github.com/servo/ipc-channel.git" } +lazy_static = "1.4.0" +regex = "1.5.4" +scoped-tls-hkt = "0.1.2" +serde = { version = "1", features = ["derive"] } +serde_yaml = "0.8" +walkdir = "2" |