aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-05-31 17:13:25 +0800
committer魏曹先生 <1992414357@qq.com>2026-05-31 17:13:25 +0800
commit479cb2c1c0a34015a3653647796fa688fa187e9e (patch)
tree58d52dc00ea58db533b0eaeceff28583be4183ce
parenteb54c560b5832ea4ca5129e13805be3c338ad2c9 (diff)
Switch mingling dependencies to local path references
-rw-r--r--Cargo.lock33
-rw-r--r--mingling/Cargo.toml4
2 files changed, 4 insertions, 33 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 0fed654..c8beae0 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -276,8 +276,8 @@ name = "mingling"
version = "0.1.9"
dependencies = [
"mingling",
- "mingling_core 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
- "mingling_macros 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
+ "mingling_core",
+ "mingling_macros",
"serde",
"size",
"tokio",
@@ -312,23 +312,6 @@ dependencies = [
]
[[package]]
-name = "mingling_core"
-version = "0.1.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "99628c909d5f1824771e378399024e3c8f8f880a1e1e6b34ac03df67ed15d9c2"
-dependencies = [
- "env_logger",
- "just_fmt",
- "just_template",
- "log",
- "ron",
- "serde",
- "serde_json",
- "serde_yaml",
- "toml",
-]
-
-[[package]]
name = "mingling_macros"
version = "0.1.9"
dependencies = [
@@ -339,18 +322,6 @@ dependencies = [
]
[[package]]
-name = "mingling_macros"
-version = "0.1.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "01c878eabe0a08c7c394e868591cbcdbdb75460cb2f8f0dab7645583b9604340"
-dependencies = [
- "just_fmt",
- "proc-macro2",
- "quote",
- "syn",
-]
-
-[[package]]
name = "mio"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/mingling/Cargo.toml b/mingling/Cargo.toml
index 37ca792..de15d3a 100644
--- a/mingling/Cargo.toml
+++ b/mingling/Cargo.toml
@@ -79,7 +79,7 @@ ron_serde_fmt = ["mingling_core/ron_serde_fmt"]
extra_macros = ["mingling_macros/extra_macros"]
[dependencies]
-mingling_core = { version = "0.1.9", default-features = false }
-mingling_macros = { version = "0.1.9", default-features = false }
+mingling_core = { path = "../mingling_core", default-features = false }
+mingling_macros = { path = "../mingling_macros", default-features = false }
serde = { workspace = true, optional = true }
size = { version = "0.5", optional = true }