Created
December 28, 2024 20:05
-
-
Save RandyMcMillan/510fdb70d62b068435530c40f429ab7c to your computer and use it in GitHub Desktop.
cargo justfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias d := doc | |
alias l := nix-lint | |
alias uf := nix-update-flake-dependencies | |
alias uc := update-cargo-dependencies | |
#alias r := run | |
alias t := cargo-test | |
alias b := build | |
alias rr := run-release | |
alias cw := cargo-watch | |
default: | |
@just --choose | |
clippy: | |
cargo clippy --all-targets --all-features | |
nix-actionlint: | |
nix develop .#actionlintShell --command actionlint | |
deny: | |
cargo deny check | |
cargo-test: | |
cargo test | |
nix-cargo-diet: | |
nix develop .#lintShell --command cargo diet | |
nix-cargo-tarpaulin: | |
nix develop .#lintShell --command cargo tarpaulin --out html --exclude-files "benches/*" | |
nix-cargo-public-api: | |
nix develop .#lintShell --command cargo public-api | |
nix-cargo-diff: | |
nix develop .#lintShell --command cargo public-api diff | |
nix-lint: | |
nix develop .#lintShell --command cargo diet | |
nix develop .#lintShell --command cargo deny check licenses sources | |
nix develop .#lintShell --command typos | |
nix develop .#lintShell --command lychee *.md | |
nix develop .#fmtShell --command treefmt --fail-on-change | |
nix develop .#lintShell --command cargo udeps | |
nix develop .#lintShell --command cargo machete | |
nix develop .#lintShell --command cargo outdated | |
nix develop .#lintShell --command taplo lint | |
nix develop .#actionlintShell --command actionlint --ignore SC2002 | |
cargo check --future-incompat-report | |
nix flake check | |
keygen: | |
cargo run --bin keygen rand --json > identity.json | |
autonat-client: | |
cargo run --bin autonat_client | |
autonat-server: | |
cargo run --bin autonat_server | |
autonatv2-client: | |
cargo run --bin autonatv2_client | |
autonatv2-server: | |
cargo run --bin autonatv2_server | |
browser-webrtc-example: | |
cargo run --bin browser-webrtc-example | |
chat-example: | |
cargo run --bin chat-example | |
dcutr-example: | |
cargo run --bin dcutr-example | |
distributed-key-value-store-example: | |
cargo run --bin distributed-key-value-store-example | |
file-sharing-example: | |
cargo run --bin file-sharing-example | |
hole-punching-tests: | |
cargo run --bin hole-punching-tests | |
identify-example: | |
cargo run --bin identify-example | |
ipfs-kad-example: | |
cargo run --bin ipfs-kad-example | |
ipfs-private-example: | |
cargo run --bin ipfs-private-example | |
libp2p-server: | |
cargo run --bin libp2p-server | |
metrics-example: | |
cargo run --bin metrics-example | |
native_ping: | |
cargo run --bin native_ping | |
perf: | |
cargo run --bin perf | |
ping-example: | |
just relay-server-example & \ | |
cargo run --bin ping-example -- /ip4/127.0.0.1/tcp/1111 | |
relay-server-example: | |
cargo run --bin relay-server-example -- --secret-key-seed 0 --port 1111 | |
rendezvous-example: | |
cargo run --bin rendezvous-example | |
rzv-discover: | |
cargo run --bin rzv-discover | |
rzv-identify: | |
cargo run --bin rzv-identify | |
rzv-register: | |
cargo run --bin rzv-register | |
stream-example: | |
cargo run --bin stream-example | |
upnp-example: | |
cargo run --bin upnp-example | |
wasm_ping: | |
cargo run --bin wasm_ping | |
build: | |
cargo build | |
run-release: | |
cargo run --release | |
doc: | |
cargo doc --open --offline | |
# Update and then commit the `Cargo.lock` file | |
update-cargo-dependencies: | |
cargo update | |
git add Cargo.lock | |
git commit Cargo.lock -m "update(cargo): \`Cargo.lock\`" | |
# Future incompatibility report, run regularly | |
cargo-future: | |
cargo check --future-incompat-report | |
nix-update-flake-dependencies: | |
nix flake update --commit-lock-file | |
cargo-watch: | |
cargo watch -x check -x test -x build | |
# build all examples | |
nix-examples: | |
nix develop --command $SHELL | |
example_list=$(cargo build --example 2>&1 | sed '1,2d' | awk '{print $1}') | |
# Build each example | |
# shellcheck disable=SC2068 | |
for example in ${example_list[@]}; do | |
cargo build --example "$example" | |
done | |
nix-examples-msrv: | |
set -x | |
nix develop .#msrvShell --command | |
rustc --version | |
cargo --version | |
example_list=$(cargo build --example 2>&1 | grep -v ":") | |
# Build each example | |
# shellcheck disable=SC2068 | |
for example in ${example_list[@]}; do | |
cargo build --example "$example" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment