very fast at protocol indexer with flexible filtering, xrpc queries, cursor-backed event stream, and more, built on fjall
rust fjall at-protocol atproto indexer
60
fork

Configure Feed

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

at main 28 lines 595 B view raw
1{ 2 lib, 3 rustPlatform, 4 cmake, 5 ... 6}: 7rustPlatform.buildRustPackage { 8 pname = "hydrant"; 9 version = "main"; 10 11 src = lib.fileset.toSource { 12 root = ./.; 13 fileset = lib.fileset.unions [ 14 ./src ./Cargo.toml ./Cargo.lock 15 ]; 16 }; 17 18 nativeBuildInputs = [cmake]; 19 20 cargoLock = { 21 lockFile = ./Cargo.lock; 22 outputHashes = { 23 "rmp-0.8.15" = "sha256-0VATbSR2lGiCJ8Ww4a5pkOHSRUjoysnFonpKS/oMzgU="; 24 "fjall-3.1.4" = "sha256-QO1EvdSwAetH24TOxiHSkguE4JBKViJy4JXQvi9hi/A="; 25 "lsm-tree-3.1.4" = "sha256-6fhVvfuZQXeUIXmDAaHpEDLZwZsMTLCMNQAAac3/WkM="; 26 }; 27 }; 28}