loadwise 0.1.0

A protocol-agnostic load balancing strategy engine for Rust
Documentation
[package]
name = "loadwise"
description = "A protocol-agnostic load balancing strategy engine for Rust"
version.workspace = true
edition.workspace = true
license.workspace = true
authors.workspace = true
repository.workspace = true
homepage.workspace = true
rust-version.workspace = true
keywords = ["load-balancing", "strategy", "networking"]
categories = ["algorithms", "network-programming"]
readme = "../../README.md"


[features]
default = []
tower = ["dep:loadwise-tower"]
redis = ["dep:loadwise-store-redis"]

[dependencies]
loadwise-core = { version = "0.1.0", path = "../loadwise-core" }
loadwise-tower = { version = "0.1.0", path = "../loadwise-tower", optional = true }
loadwise-store-redis = { version = "0.1.0", path = "../loadwise-store-redis", optional = true }