mirror of
https://github.com/clash-verge-rev/clash-verge-rev.git
synced 2026-01-29 17:15:38 +08:00
* feat(logging): introduce clash-verge-logging crate for management - Added a new crate `clash-verge-logging` with dependencies on `log`, `tokio`, `compact_str`, and `flexi_logger`. - Implemented logging types and macros for structured logging across the application. - Replaced existing logging imports with the new `clash_verge_logging` crate in various modules. - Updated logging functionality to support different logging types and error handling. - Refactored code to improve logging consistency and maintainability. * fix(logging): update import paths for clash_verge_logging in linux.rs and dns.rs * fix(logging): update import statement for clash_verge_logging in windows.rs
14 lines
256 B
TOML
14 lines
256 B
TOML
[package]
|
|
name = "clash-verge-logging"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
log = { workspace = true }
|
|
tokio = { workspace = true }
|
|
compact_str = { workspace = true }
|
|
flexi_logger = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
tauri-dev = [] |