aboutsummaryrefslogtreecommitdiff
path: root/mingling_cli/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'mingling_cli/Cargo.toml')
-rw-r--r--mingling_cli/Cargo.toml13
1 files changed, 12 insertions, 1 deletions
diff --git a/mingling_cli/Cargo.toml b/mingling_cli/Cargo.toml
index 5b36c6b..330ef5a 100644
--- a/mingling_cli/Cargo.toml
+++ b/mingling_cli/Cargo.toml
@@ -13,6 +13,10 @@ categories = ["command-line-interface"]
[[bin]]
name = "mling"
+path = "src/bin/wrapper.rs"
+
+[[bin]]
+name = "mingling-cli"
path = "src/main.rs"
[dependencies.mingling]
@@ -27,7 +31,7 @@ features = [
[build-dependencies.mingling]
path = "../mingling"
features = [
- "builds",
+ "build",
"pathf",
]
@@ -48,6 +52,7 @@ serde_json = "1.0.151"
# Parallelism
tokio = { version = "1.53.1", features = ["full"] }
+toml_edit = "0.25.13"
[build-dependencies]
# Configure & Serialization
@@ -57,4 +62,10 @@ serde_json = "1.0.151"
# Code gen
just_template = "0.2.0"
+[profile.release]
+opt-level = "z"
+lto = true
+codegen-units = 1
+strip = true
+
[workspace]