aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-07-10 00:59:21 +0800
committer魏曹先生 <1992414357@qq.com>2026-07-10 00:59:21 +0800
commit8ddd5031f749470dea7d26b0cfc3acfb50e509ea (patch)
tree68bbef3835b71b7eb65aaf195201e4bc83c2de2e
parent9512db00340ac010a78cc86b76ac0344abfae7a8 (diff)
chore(deps): switch workspace crates to local paths
-rw-r--r--Cargo.lock47
-rw-r--r--Cargo.toml6
2 files changed, 6 insertions, 47 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 57f3b8e..74d983b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -404,8 +404,8 @@ name = "mingling"
version = "0.2.1"
dependencies = [
"mingling",
- "mingling_core 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
- "mingling_macros 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
+ "mingling_core",
+ "mingling_macros",
"serde",
"size",
"tokio",
@@ -433,25 +433,7 @@ dependencies = [
"just_fmt",
"just_template",
"log",
- "mingling_pathf 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
- "ron",
- "serde",
- "serde_json",
- "serde_yaml",
- "toml",
-]
-
-[[package]]
-name = "mingling_core"
-version = "0.2.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5c6a8751b43d4fd3d61d7b37f0d7f4d5d274d9391cf80cae9bd75f218219eefe"
-dependencies = [
- "env_logger",
- "just_fmt",
- "just_template",
- "log",
- "mingling_pathf 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
+ "mingling_pathf",
"ron",
"serde",
"serde_json",
@@ -470,31 +452,8 @@ dependencies = [
]
[[package]]
-name = "mingling_macros"
-version = "0.2.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b7cd478387797590d2afb4122078649c3e4f9da7f29dbf37817763fecf04958f"
-dependencies = [
- "just_fmt",
- "proc-macro2",
- "quote",
- "syn",
-]
-
-[[package]]
-name = "mingling_pathf"
-version = "0.2.1"
-dependencies = [
- "just_fmt",
- "proc-macro2",
- "syn",
-]
-
-[[package]]
name = "mingling_pathf"
version = "0.2.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9d400d170c80e3f2f7d6f9b6739c286bc64279c805b770fabac390e3a7c7baf0"
dependencies = [
"just_fmt",
"proc-macro2",
diff --git a/Cargo.toml b/Cargo.toml
index 499da03..4e61b61 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -17,9 +17,9 @@ exclude = [
]
[workspace.dependencies]
-mingling_core = { version = "0.2.1", default-features = false }
-mingling_macros = { version = "0.2.1", default-features = false }
-mingling_pathf = { version = "0.2.1", default-features = false }
+mingling_core = { path = "mingling_core", default-features = false }
+mingling_macros = { path = "mingling_macros", default-features = false }
+mingling_pathf = { path = "mingling_pathf", default-features = false }
just_fmt = "0.1.2"
just_template = "0.2.0"