sui-daemon-graph-0.1.151 is not a library.
sui-daemon-graph — the installable graph-server binary.
What it does
- Opens / creates a [
GraphStore] at the configured root (default/var/lib/sui/graph-store, or$XDG_DATA_HOME/sui/graph-storefor user-scope installations). - Wraps the store in an [
LruHotCache] (default 1024 entries). - Stands up a [
GraphServer] on a Unix socket (default resolved via tsunagu'sSocketPath::for_app("sui-graph")— typically$XDG_RUNTIME_DIR/sui-graph.sock). - Installs signal handlers for SIGINT + SIGTERM that drive a
Shutdowncontroller — the server's accept loop exits within its drain budget when either fires.
Coexists peacefully with the existing cppnix-worker-protocol
sui-daemon (different socket, different protocol). Both can run
on the same machine; nothing about either depends on the other.