Constellation, Spacedust, Slingshot, UFOs: atproto crates and services for microcosm
74
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 21 lines 408 B view raw
1.PHONY: check test fmt clippy 2all: check 3 4test: 5 cargo test --all-features 6 7fmt: 8 cargo fmt \ 9 --package constellation \ 10 --package links \ 11 --package pocket \ 12 --package quasar \ 13 --package slingshot \ 14 --package spacedust \ 15 --package ufos 16 cargo +nightly fmt --package jetstream 17 18clippy: 19 cargo clippy --all-targets --all-features -- -D warnings 20 21check: test fmt clippy