azoth-balancer 0.3.1

Rust-based high-performance RPC load balancer offering intelligent 3-tier endpoint routing, failover, rate limiting, and monitoring for reliable, low-latency blockchain operations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! library

pub mod balancer;
pub mod config;
pub mod config_reloader;
pub mod endpoint;
pub mod forwarder;
pub mod shutdown;
pub mod strategy;
pub mod utils;
pub use utils::cooldown;
pub use utils::health;
pub use utils::metrics;