aboutsummaryrefslogtreecommitdiff
path: root/mingling/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'mingling/Cargo.toml')
-rw-r--r--mingling/Cargo.toml11
1 files changed, 10 insertions, 1 deletions
diff --git a/mingling/Cargo.toml b/mingling/Cargo.toml
index 83ca647..9b8183d 100644
--- a/mingling/Cargo.toml
+++ b/mingling/Cargo.toml
@@ -21,7 +21,14 @@ mingling = { path = ".", features = [
] }
[package.metadata.docs.rs]
-features = ["builds", "general_renderer", "repl", "comp", "parser"]
+features = [
+ "builds",
+ "general_renderer",
+ "repl",
+ "comp",
+ "parser",
+ "extra_macros",
+]
[features]
nightly = ["mingling_core/nightly", "mingling_macros/nightly"]
@@ -69,6 +76,8 @@ yaml_serde_fmt = ["mingling_core/yaml_serde_fmt"]
toml_serde_fmt = ["mingling_core/toml_serde_fmt"]
ron_serde_fmt = ["mingling_core/ron_serde_fmt"]
+extra_macros = ["mingling_macros/extra_macros"]
+
[dependencies]
mingling_core = { path = "../mingling_core", default-features = false }
mingling_macros = { path = "../mingling_macros", default-features = false }