aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mingling/Cargo.toml2
-rw-r--r--mingling_core/Cargo.toml1
-rw-r--r--mingling_macros/Cargo.toml1
3 files changed, 3 insertions, 1 deletions
diff --git a/mingling/Cargo.toml b/mingling/Cargo.toml
index 719ded5..45bbaa1 100644
--- a/mingling/Cargo.toml
+++ b/mingling/Cargo.toml
@@ -28,7 +28,7 @@ general_renderer = [
"dep:serde",
"mingling_macros/general_renderer",
]
-
+repl = ["mingling_core/repl", "mingling_macros/repl"]
comp = ["mingling_core/comp", "mingling_macros/comp"]
parser = ["dep:size"]
diff --git a/mingling_core/Cargo.toml b/mingling_core/Cargo.toml
index e2296a4..8d9c6ef 100644
--- a/mingling_core/Cargo.toml
+++ b/mingling_core/Cargo.toml
@@ -21,6 +21,7 @@ general_renderer = [
"dep:serde_yaml",
"dep:toml",
]
+repl = []
[dependencies]
just_fmt = "0.1.2"
diff --git a/mingling_macros/Cargo.toml b/mingling_macros/Cargo.toml
index a8a765d..baa324f 100644
--- a/mingling_macros/Cargo.toml
+++ b/mingling_macros/Cargo.toml
@@ -17,6 +17,7 @@ async = []
clap = []
comp = []
general_renderer = []
+repl = []
[dependencies]
syn = { version = "2.0", features = ["full", "visit-mut"] }