chore: add cross-platform cargo check workflow and remove debug features

This commit is contained in:
Tunglies
2025-06-06 02:40:12 +08:00
parent 44b7af0c6e
commit 59594855b8
3 changed files with 50 additions and 17 deletions

View File

@@ -3,17 +3,3 @@ pub struct MihomoManager {
pub(crate) mihomo_server: String,
pub(crate) client: reqwest::Client,
}
#[cfg(feature = "debug")]
impl Drop for MihomoData {
fn drop(&mut self) {
println!("Dropping MihomoData");
}
}
#[cfg(feature = "debug")]
impl Drop for MihomoManager {
fn drop(&mut self) {
println!("Dropping MihomoManager");
}
}