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
12
13
14
15
use std::collections::HashMap;

pub use http::{
    register as register_http_pipeline, HttpContext, HttpPipeline, HttpPipelineFactory,
};
pub use stream::{
    register as register_stream_pipeline, StreamContext, StreamPipeline, StreamPipelineFactory,
};

// TODO: implement pipeline
pub(crate) mod http;
mod misc;
pub(crate) mod stream;

pub type PipelineConf = HashMap<String, serde_yaml::Value>;