修改库名称,使其满足命名规则

This commit is contained in:
2025-11-19 20:06:37 +08:00
parent cf02e8c6f8
commit a360f2c21a
2 changed files with 18 additions and 18 deletions

34
Cargo.lock generated
View File

@@ -2,23 +2,6 @@
# It is not intended for manual editing. # It is not intended for manual editing.
version = 4 version = 4
[[package]]
name = "LogCollection"
version = "0.1.0"
dependencies = [
"bytes",
"crossbeam",
"reqwest",
"serde",
"serde_json",
"spin",
"tokio",
"tracing",
"tracing-appender",
"tracing-futures",
"tracing-subscriber",
]
[[package]] [[package]]
name = "aho-corasick" name = "aho-corasick"
version = "1.1.4" version = "1.1.4"
@@ -623,6 +606,23 @@ version = "0.4.28"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
[[package]]
name = "log_collection"
version = "0.1.0"
dependencies = [
"bytes",
"crossbeam",
"reqwest",
"serde",
"serde_json",
"spin",
"tokio",
"tracing",
"tracing-appender",
"tracing-futures",
"tracing-subscriber",
]
[[package]] [[package]]
name = "matchers" name = "matchers"
version = "0.2.0" version = "0.2.0"

View File

@@ -1,5 +1,5 @@
[package] [package]
name = "LogCollection" name = "log_collection"
version = "0.1.0" version = "0.1.0"
edition = "2024" edition = "2024"