mount an atproto PDS repository as a FUSE filesystem

fix ci

oppi.li ee037cae a62f8728

verified
Changed files
+5 -1
.tangled
workflows
src
+5
.tangled/workflows/build.yml
··· 8 8 - cargo 9 9 - rustc 10 10 - rustfmt 11 + - pkg-config 12 + - fuse3 13 + - openssl 11 14 12 15 steps: 13 16 - name: build 14 17 command: | 18 + export PKG_CONFIG_PATH="${PKG_CONFIG_PATH:+$PKG_CONFIG_PATH:}$(nix build nixpkgs#openssl.dev --no-link --print-out-paths)/lib/pkgconfig" 19 + export PKG_CONFIG_PATH="${PKG_CONFIG_PATH}:$(nix build nixpkgs#fuse3.dev --no-link --print-out-paths)/lib/pkgconfig" 15 20 cargo build --all --verbose 16 21 17 22
-1
src/main.rs
··· 1 - #![feature(let_chains)] 2 1 mod client; 3 2 mod error; 4 3 mod fs;