interactive intro to open social at-me.zzstoatzz.io

chore: remove unnecessary openssl dependencies from check workflow

cargo fmt and clippy don't compile dependencies, so they don't need
openssl, pkg-config, or gcc. the PKG_CONFIG_PATH setup wasn't working
anyway (find command not available in nixery containers).

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

-5
-5
.tangled/workflows/check.yaml
··· 10 - cargo 11 - rustfmt 12 - clippy 13 - - gcc 14 - - openssl.dev 15 - - pkg-config 16 17 steps: 18 - name: check formatting 19 command: | 20 - export PKG_CONFIG_PATH=$(find /nix/store -maxdepth 1 -name "*openssl*-dev" -type d | head -1)/lib/pkgconfig 21 cargo fmt --check 22 23 - name: run clippy 24 command: | 25 - export PKG_CONFIG_PATH=$(find /nix/store -maxdepth 1 -name "*openssl*-dev" -type d | head -1)/lib/pkgconfig 26 cargo clippy -- -D warnings
··· 10 - cargo 11 - rustfmt 12 - clippy 13 14 steps: 15 - name: check formatting 16 command: | 17 cargo fmt --check 18 19 - name: run clippy 20 command: | 21 cargo clippy -- -D warnings