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 \
9 --package constellation \
10 --package ufos \
11 --package spacedust \
12 --package who-am-i \
13 --package slingshot \
14 --package pocket \
15 --package reflector
16 cargo +nightly fmt --package jetstream
17
18clippy:
19 cargo clippy --all-targets --all-features -- -D warnings
20
21check: test fmt clippy