mq-bridge 0.2.13

An asynchronous message bridging library connecting Kafka, MQTT, AMQP, NATS, MongoDB, HTTP, and more.
Documentation
This is supposed to run via `cargo test --test integration_test --features full --release -- --ignored --nocapture --test-threads=1 --show-output`

Alternatively, you can use this to start a test bridge manually from project root:
```bash
docker-compose -f tests/integration/config/integration.yml up -d
CONFIG_FILE=tests/integration/config/integration.yml cargo run
```

###
Internal memory performance test:
`cargo test --test memory_test --release -- --ignored --nocapture`

###
Run with full tracing:
`RUST_LOG=info,mq_bridge=trace cargo test...`

###
Run performance test for a single backend, for example aws:
`MQB_TEST_BACKEND=aws cargo test --test performance_test --features full --release  -- --ignored --test-threads=1 --nocapture`