aboutsummaryrefslogtreecommitdiff
path: root/mingling
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-05-07 13:18:23 +0800
committer魏曹先生 <1992414357@qq.com>2026-05-07 13:18:23 +0800
commit89571fa6ef2ffb5e044d714627460a46e7f76ca2 (patch)
tree030aca1b7a8dac1daf4fcc02394fc3331874eef2 /mingling
parent44d7c652eb1230ea0fd44d5b641fbb3c2a53fae3 (diff)
Update mingling from 0.1.7 to 0.1.8
Diffstat (limited to 'mingling')
-rw-r--r--mingling/Cargo.lock10
-rw-r--r--mingling/Cargo.toml6
-rw-r--r--mingling/README.md2
3 files changed, 7 insertions, 11 deletions
diff --git a/mingling/Cargo.lock b/mingling/Cargo.lock
index 08911df..879973d 100644
--- a/mingling/Cargo.lock
+++ b/mingling/Cargo.lock
@@ -223,7 +223,7 @@ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
[[package]]
name = "mingling"
-version = "0.1.7"
+version = "0.1.8"
dependencies = [
"mingling",
"mingling_core",
@@ -235,9 +235,7 @@ dependencies = [
[[package]]
name = "mingling_core"
-version = "0.1.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e12e0ee263a48336b5a16598a89c2220524af7a0267227160ebed1364ff0a741"
+version = "0.1.8"
dependencies = [
"env_logger",
"just_fmt",
@@ -254,9 +252,7 @@ dependencies = [
[[package]]
name = "mingling_macros"
-version = "0.1.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b7af9a980ada645d77113c0d39877d6a3d3861b271ceb8a1b6bb804177697ad8"
+version = "0.1.8"
dependencies = [
"just_fmt",
"once_cell",
diff --git a/mingling/Cargo.toml b/mingling/Cargo.toml
index 61fca91..9c0a9d2 100644
--- a/mingling/Cargo.toml
+++ b/mingling/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mingling"
-version = "0.1.7"
+version = "0.1.8"
edition = "2024"
authors = ["Weicao-CatilGrass"]
license = "MIT OR Apache-2.0"
@@ -36,7 +36,7 @@ comp = ["mingling_core/comp", "mingling_macros/comp"]
parser = ["dep:size"]
[dependencies]
-mingling_core = { version = "0.1.7", default-features = false }
-mingling_macros = { version = "0.1.7", default-features = false }
+mingling_core = { path = "../mingling_core", default-features = false }
+mingling_macros = { path = "../mingling_macros", default-features = false }
serde = { version = "1.0", features = ["derive"], optional = true }
size = { version = "0.5", optional = true }
diff --git a/mingling/README.md b/mingling/README.md
index 8f658a6..eba9d4c 100644
--- a/mingling/README.md
+++ b/mingling/README.md
@@ -54,7 +54,7 @@
```toml
# From crates.io
-mingling = "0.1.7"
+mingling = "0.1.8"
# From GitHub
mingling = { git = "https://github.com/catilgrass/mingling", branch = "main" }