Forward
Based on tokio and rust rdkafka
It's strongly encouraged the use of alternative allocator like MiMalloc ```
static GLOBAL: MiMalloc = MiMalloc;
async fn main() -> Result<(),String> { ForwarderBuilder::default() .receiver(Receiver::newtcpstream("127.0.0.1".toowned(), "8888".toowned(), 2000)) .checkpointstrategy(CheckpointStrategies::OpenDoors) .partitionstrategy(PartitionStrategies::newstickyroundrobin()) .transformstrategy(TransformerStrategies::NoTransform) .kafkasettings(HashMap::from([("bootstrap.servers".toowned(),"broker:29091".toowned())])) .outputtopic("testtopic".toowned()) .cachesize(1000) .statsinterval(10) .build() .unwrap() .await } ```