🎣 Secure High Performance Microservices
- Logger
- JSON Config Loader
- HTTP Server
using iron/hyper - Redis Client
- HTTP Client
using reqwest/hyper - ORM (MySQL) Client
using diesel - Kafka Producer/Consumer
using rdkafka
git clone https://github.com/krystianity/rust-ms.gitcd rust-mscargo buildRUST_LOG=rust_ms cargo run
Formats the sources according to community-standard/best practice.
Setup once with rustup component add rustfmt, then run cargo fmt.
Rust's linter.
Setup once with rustup component add clippy, then run cargo clippy.