summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2025-11-06 22:06:22 +0800
committer魏曹先生 <1992414357@qq.com>2025-11-06 22:06:22 +0800
commitce6ff7ec0648af667e620631b793fe0e4f8fea37 (patch)
tree9b962d642c63cc8c0dc704d426962f5911f6bf9b /Cargo.lock
parent60894f1271293c2802c1779e3260aa218294efe3 (diff)
update: upgrade dependencies and add new modules
- Upgrade colored from 2.2.0 to 3.0.0 - Remove duplicate colored dependency - Add strip-ansi-escapes for ANSI escape sequence handling - Add ahash for high-performance hashing - Add data_struct and vcs_docs modules
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock64
1 files changed, 52 insertions, 12 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 899eb7c..67d4abe 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -38,6 +38,19 @@ dependencies = [
]
[[package]]
+name = "ahash"
+version = "0.8.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
+dependencies = [
+ "cfg-if",
+ "getrandom 0.3.4",
+ "once_cell",
+ "version_check",
+ "zerocopy",
+]
+
+[[package]]
name = "aho-corasick"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -366,7 +379,7 @@ checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
name = "cli_publisher"
version = "0.0.1"
dependencies = [
- "colored 3.0.0",
+ "colored",
"serde",
"toml 0.9.8",
]
@@ -379,16 +392,6 @@ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
[[package]]
name = "colored"
-version = "2.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
-dependencies = [
- "lazy_static",
- "windows-sys 0.59.0",
-]
-
-[[package]]
-name = "colored"
version = "3.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fde0e0ec90c9dfb3b4b1a0891a7dcd0e2bffde2f7efed5fe7c9bb00e5bfb915e"
@@ -510,6 +513,14 @@ dependencies = [
]
[[package]]
+name = "data_struct"
+version = "0.1.0"
+dependencies = [
+ "ahash",
+ "serde",
+]
+
+[[package]]
name = "der"
version = "0.7.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -846,10 +857,12 @@ version = "0.0.0"
dependencies = [
"action_system",
"cfg_file",
+ "data_struct",
"string_proc",
"tcp_connection",
"vcs_actions",
"vcs_data",
+ "vcs_docs",
]
[[package]]
@@ -858,12 +871,13 @@ version = "0.0.0"
dependencies = [
"chrono",
"clap",
- "colored 2.2.0",
+ "colored",
"env_logger",
"just_enough_vcs",
"log",
"regex",
"rust-i18n",
+ "strip-ansi-escapes",
"tokio",
"toml 0.9.8",
]
@@ -1614,6 +1628,15 @@ name = "string_proc"
version = "0.1.0"
[[package]]
+name = "strip-ansi-escapes"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2a8f8038e7e7969abb3f1b7c2a811225e9296da208539e0f79c5251d6cac0025"
+dependencies = [
+ "vte",
+]
+
+[[package]]
name = "strsim"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1859,21 +1882,38 @@ version = "0.1.0"
dependencies = [
"action_system",
"cfg_file",
+ "chrono",
+ "data_struct",
"dirs",
"serde",
"string_proc",
"tcp_connection",
"tokio",
"uuid",
+ "vcs_docs",
+ "winapi-util",
]
[[package]]
+name = "vcs_docs"
+version = "0.1.0"
+
+[[package]]
name = "version_check"
version = "0.9.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
[[package]]
+name = "vte"
+version = "0.14.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "231fdcd7ef3037e8330d8e17e61011a2c244126acc0a982f4040ac3f9f0bc077"
+dependencies = [
+ "memchr",
+]
+
+[[package]]
name = "walkdir"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"