trojan-rules 0.5.3

Rule-based routing engine for trojan-rs (Surge/Clash compatible)
Documentation
1
2
3
4
5
6
7
8
9
//! Rule-set providers for loading rules from various sources.

pub mod file;
#[cfg(feature = "http")]
pub mod http;

pub use file::FileProvider;
#[cfg(feature = "http")]
pub use http::HttpProvider;