summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2021-10-25 00:30:15 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2021-10-25 00:30:15 +0200
commit5e2ab049dc3c8514401d1aef8fd4564759352ec3 (patch)
tree66d10592d6a6b35089c79d72ea22d9d147d3d206
parent34ac18d20c13a78914d447fee83204811a27b1e4 (diff)
downloadrebel-5e2ab049dc3c8514401d1aef8fd4564759352ec3.tar
rebel-5e2ab049dc3c8514401d1aef8fd4564759352ec3.zip
Move main crate to subdirectory
-rw-r--r--Cargo.toml26
-rw-r--r--crates/executor/Cargo.toml24
-rw-r--r--crates/executor/src/args.rs (renamed from src/args.rs)0
-rw-r--r--crates/executor/src/context.rs (renamed from src/context.rs)0
-rw-r--r--crates/executor/src/executor.rs (renamed from src/executor.rs)0
-rw-r--r--crates/executor/src/main.rs (renamed from src/main.rs)0
-rw-r--r--crates/executor/src/recipe.rs (renamed from src/recipe.rs)0
-rw-r--r--crates/executor/src/resolve.rs (renamed from src/resolve.rs)0
-rw-r--r--crates/executor/src/task.rs (renamed from src/task.rs)0
-rw-r--r--crates/executor/src/template.rs (renamed from src/template.rs)0
10 files changed, 25 insertions, 25 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 921d917..a16584b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,29 +1,5 @@
-[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
-
[workspace]
-
-[dependencies]
-common = { path = "crates/common", package = "rebel-common" }
-runner = { path = "crates/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"
+members = ["crates/*"]
[profile.dev.package."*"]
opt-level = 2
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"
diff --git a/src/args.rs b/crates/executor/src/args.rs
index 527231d..527231d 100644
--- a/src/args.rs
+++ b/crates/executor/src/args.rs
diff --git a/src/context.rs b/crates/executor/src/context.rs
index 7a46e8d..7a46e8d 100644
--- a/src/context.rs
+++ b/crates/executor/src/context.rs
diff --git a/src/executor.rs b/crates/executor/src/executor.rs
index 1d6ee44..1d6ee44 100644
--- a/src/executor.rs
+++ b/crates/executor/src/executor.rs
diff --git a/src/main.rs b/crates/executor/src/main.rs
index 4a045be..4a045be 100644
--- a/src/main.rs
+++ b/crates/executor/src/main.rs
diff --git a/src/recipe.rs b/crates/executor/src/recipe.rs
index 04f356b..04f356b 100644
--- a/src/recipe.rs
+++ b/crates/executor/src/recipe.rs
diff --git a/src/resolve.rs b/crates/executor/src/resolve.rs
index 338ce3f..338ce3f 100644
--- a/src/resolve.rs
+++ b/crates/executor/src/resolve.rs
diff --git a/src/task.rs b/crates/executor/src/task.rs
index fe9572c..fe9572c 100644
--- a/src/task.rs
+++ b/crates/executor/src/task.rs
diff --git a/src/template.rs b/crates/executor/src/template.rs
index 0caa30d..0caa30d 100644
--- a/src/template.rs
+++ b/crates/executor/src/template.rs