aboutsummaryrefslogtreecommitdiff
path: root/mingling_cli/Cargo.lock
diff options
context:
space:
mode:
Diffstat (limited to 'mingling_cli/Cargo.lock')
-rw-r--r--mingling_cli/Cargo.lock80
1 files changed, 75 insertions, 5 deletions
diff --git a/mingling_cli/Cargo.lock b/mingling_cli/Cargo.lock
index 5a0dcd0..ddfe01c 100644
--- a/mingling_cli/Cargo.lock
+++ b/mingling_cli/Cargo.lock
@@ -89,6 +89,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
[[package]]
+name = "colored"
+version = "3.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34"
+dependencies = [
+ "windows-sys",
+]
+
+[[package]]
name = "darling"
version = "0.20.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -155,6 +164,27 @@ dependencies = [
]
[[package]]
+name = "dirs"
+version = "6.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
+dependencies = [
+ "dirs-sys",
+]
+
+[[package]]
+name = "dirs-sys"
+version = "0.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
+dependencies = [
+ "libc",
+ "option-ext",
+ "redox_users",
+ "windows-sys",
+]
+
+[[package]]
name = "equivalent"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -177,6 +207,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
+name = "getrandom"
+version = "0.2.17"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
+dependencies = [
+ "cfg-if",
+ "libc",
+ "wasi",
+]
+
+[[package]]
name = "hashbrown"
version = "0.17.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -244,6 +285,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7743783ea728ef5c31194c6590797eed286449b4a4e87d626d8a51f0a94e732"
[[package]]
+name = "libredox"
+version = "0.1.19"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2026a5056764a10b2bf5d56488cba40da507f5493a6a429340e2004d9ed085fa"
+dependencies = [
+ "libc",
+]
+
+[[package]]
name = "lock_api"
version = "0.4.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -272,7 +322,7 @@ dependencies = [
[[package]]
name = "mingling"
-version = "0.3.0"
+version = "0.4.0"
dependencies = [
"arg-picker",
"mingling_core",
@@ -281,14 +331,17 @@ dependencies = [
[[package]]
name = "mingling-cli"
-version = "0.3.0"
+version = "0.4.0"
dependencies = [
"annotate-snippets",
"cargo_metadata",
+ "colored",
+ "dirs",
"just_template",
"mingling",
"proc-macro2",
"quote",
+ "semver",
"serde",
"serde_json",
"syn 3.0.2",
@@ -298,7 +351,7 @@ dependencies = [
[[package]]
name = "mingling_core"
-version = "0.3.0"
+version = "0.4.0"
dependencies = [
"just_fmt 0.2.0",
"just_template",
@@ -308,7 +361,7 @@ dependencies = [
[[package]]
name = "mingling_macros"
-version = "0.3.0"
+version = "0.4.0"
dependencies = [
"just_fmt 0.2.0",
"proc-macro2",
@@ -318,7 +371,7 @@ dependencies = [
[[package]]
name = "mingling_pathf"
-version = "0.3.0"
+version = "0.4.0"
dependencies = [
"just_fmt 0.2.0",
"proc-macro2",
@@ -337,6 +390,12 @@ dependencies = [
]
[[package]]
+name = "option-ext"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
+
+[[package]]
name = "parking_lot"
version = "0.12.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -393,6 +452,17 @@ dependencies = [
]
[[package]]
+name = "redox_users"
+version = "0.5.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
+dependencies = [
+ "getrandom",
+ "libredox",
+ "thiserror",
+]
+
+[[package]]
name = "scopeguard"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"