carapace_lb 0.1.0

Carapace LB is a path-based load balancer that leverages the Pingora Framework by Cloudflare to manage and route traffic efficiently.
Documentation
1
2
3
4
5
6
7

#[tokio::test]
async fn load_config(){
    use crate::config::Config;
    let _: Config = Config::new("config.toml".to_string());
    assert!(true)
}