forked from
microcosm.blue/microcosm-rs
Constellation, Spacedust, Slingshot, UFOs: atproto crates and services for microcosm
1.PHONY: check test fmt clippy
2all: check
3
4test:
5 cargo test --all-features
6
7fmt:
8 cargo fmt --package links --package constellation --package ufos --package spacedust --package who-am-i --package slingshot --package pocket
9 cargo +nightly fmt --package jetstream
10
11clippy:
12 cargo clippy --all-targets --all-features -- -D warnings
13
14check: test fmt clippy