mihomo-rs 2.0.0

A Rust SDK and CLI tool for mihomo proxy management with service lifecycle management, configuration handling, and real-time monitoring
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod client;
pub mod error;
pub mod home;
pub mod port;
pub mod types;
pub mod validate;

pub use client::MihomoClient;
pub use error::{ErrorCode, MihomoError, Result};
pub use home::get_home_dir;
pub use port::{find_available_port, is_port_available, parse_port_from_addr};
pub use types::*;
pub use validate::{validate_profile_name, validate_version_name};