capybara-core 0.0.1-alpha.1

A reverse proxy in Rust, which is inspired from Nginx/OpenResty/Envoy.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub(crate) use misc::{establish, ClientStream};
pub use pools::{Pool, Pools};
pub use round_robin::RoundRobinPools;
pub(crate) use upstreams::Upstreams;
pub use weighted::WeightedPools;

mod misc;
mod pools;
mod round_robin;
mod upstreams;
mod weighted;