aboutsummaryrefslogtreecommitdiff
path: root/mling/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-05-04 04:18:44 +0800
committer魏曹先生 <1992414357@qq.com>2026-05-04 04:20:23 +0800
commitc62fcde3ef6b7bbc11ee625dcf7c00b551795f87 (patch)
tree2db599f3158f7a10a8f5fd2048e36dc2c3213cd6 /mling/Cargo.toml
parent47b39f446a7f744c37e52975d3f65345b01fff07 (diff)
Change mingling-cli dependency from path to version
Diffstat (limited to 'mling/Cargo.toml')
-rw-r--r--mling/Cargo.toml7
1 files changed, 5 insertions, 2 deletions
diff --git a/mling/Cargo.toml b/mling/Cargo.toml
index ebaedb8..506e023 100644
--- a/mling/Cargo.toml
+++ b/mling/Cargo.toml
@@ -2,6 +2,9 @@
name = "mingling-cli"
version = "0.1.7"
edition = "2024"
+license = "MIT OR Apache-2.0"
+repository = "https://github.com/catilgrass/mingling"
+description = "Mingling's scaffolding tool"
[[bin]]
name = "mling"
@@ -20,7 +23,7 @@ strip = true
[dependencies]
-mingling = { path = "../mingling", features = [
+mingling = { version = "0.1.7", features = [
"parser",
"comp",
"general_renderer",
@@ -35,4 +38,4 @@ just_fmt = "0.1.2"
toml = "0.9.8"
[build-dependencies]
-mingling = { path = "../mingling", features = ["comp"] }
+mingling = { version = "0.1.7", features = ["comp"] }