diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-04-07 08:55:43 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-04-07 08:55:58 +0800 |
| commit | 7b25db6cb2f2df2c45589e842f153de457191a64 (patch) | |
| tree | 31102d8d65e9cf7920a59d2cdcf5578193e5a52e | |
| parent | c4c4b86e0b42e2749b651979b39971a8ea887fb4 (diff) | |
Bump version to 0.1.5 and use local dependencies
| -rw-r--r-- | Cargo.lock | 30 | ||||
| -rw-r--r-- | mingling/Cargo.toml | 6 | ||||
| -rw-r--r-- | mingling_core/Cargo.toml | 2 |
3 files changed, 19 insertions, 19 deletions
@@ -43,7 +43,7 @@ dependencies = [ name = "example-basic" version = "0.1.0" dependencies = [ - "mingling 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "mingling 0.1.4", "serde", "tokio", ] @@ -52,7 +52,7 @@ dependencies = [ name = "example-general-renderer" version = "0.1.0" dependencies = [ - "mingling 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "mingling 0.1.4", "serde", "tokio", ] @@ -61,7 +61,7 @@ dependencies = [ name = "example-picker" version = "0.1.0" dependencies = [ - "mingling 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "mingling 0.1.4", "serde", "tokio", ] @@ -118,25 +118,25 @@ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" [[package]] name = "mingling" version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44649f30155978a64f833b8acc2ed78e79ff8e399c2476374cee874718b30575" dependencies = [ - "mingling 0.1.4", - "mingling_core 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "mingling_core 0.1.3", "mingling_macros 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "serde", "size", - "tokio", ] [[package]] name = "mingling" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44649f30155978a64f833b8acc2ed78e79ff8e399c2476374cee874718b30575" +version = "0.1.5" dependencies = [ - "mingling_core 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "mingling_macros 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "mingling 0.1.5", + "mingling_core 0.1.4", + "mingling_macros 0.1.3", "serde", "size", + "tokio", ] [[package]] @@ -147,7 +147,7 @@ version = "0.1.0" name = "mingling_cli" version = "0.1.0" dependencies = [ - "mingling 0.1.4", + "mingling 0.1.5", "serde", "tokio", ] @@ -155,6 +155,8 @@ dependencies = [ [[package]] name = "mingling_core" version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b764c83f1577a83cad7fea3dec1155da2f6e603332e9b80aac71d2ad3da974a" dependencies = [ "just_fmt", "ron", @@ -168,9 +170,7 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b764c83f1577a83cad7fea3dec1155da2f6e603332e9b80aac71d2ad3da974a" +version = "0.1.4" dependencies = [ "just_fmt", "ron", diff --git a/mingling/Cargo.toml b/mingling/Cargo.toml index 493b8d0..3d19be4 100644 --- a/mingling/Cargo.toml +++ b/mingling/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mingling" -version = "0.1.4" +version = "0.1.5" edition = "2024" authors = ["Weicao-CatilGrass"] license = "MIT OR Apache-2.0" @@ -27,7 +27,7 @@ general_renderer = [ parser = ["dep:size"] [dependencies] -mingling_core = { version = "0.1.3", default-features = false } -mingling_macros = { version = "0.1.3", 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_core/Cargo.toml b/mingling_core/Cargo.toml index 6f97016..d8e7c8e 100644 --- a/mingling_core/Cargo.toml +++ b/mingling_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mingling_core" -version = "0.1.3" +version = "0.1.4" edition = "2024" license = "MIT OR Apache-2.0" description = "Core of the mingling library" |
