Completed: * Use Axum + Tower * Setup metrics w/Prometheus & Grafana * Setup distributed tracing w/OTLP exporter + Tempo * Enable MQTT on RabbitMQ * Add compatibility for docker-compose * Update all dependencies * Create Config Files * Clean handling of tasks * Migrate from Diesel ORM to SQLX TODO: * Fix Tilt K8S setup * Consider Tilt docker file
18 lines
599 B
Plaintext
18 lines
599 B
Plaintext
[alias]
|
|
ci-check = "check --all --all-targets --all-features"
|
|
ci-clippy = "clippy --all --all-targets --all-features -- -Dwarnings -Drust-2018-idioms"
|
|
ci-format = "fmt --all -- --config imports_granularity=crate --check"
|
|
|
|
[build]
|
|
rustflags = ["--cfg", "tokio_unstable"]
|
|
rustdocflags = ["--cfg", "tokio_unstable"]
|
|
|
|
# In case `~/.cargo/config` has `target.<triple>.rustflags` overrides.
|
|
[target.aarch64-apple-darwin]
|
|
rustflags = ["--cfg", "tokio_unstable"]
|
|
|
|
[target.x86_64-apple-darwin]
|
|
rustflags = ["--cfg", "tokio_unstable"]
|
|
|
|
[target.x86_64-unknown-linux-gnu]
|
|
rustflags = ["--cfg", "tokio_unstable"] |