Nothing. The community build of the runtime is Apache-2.0 — production use and redistribution permitted, no token, no meter, no expiry, no account to create. It arrives as a tree you unpack, with the library, the operator compiler and the before/after tool in bin/, language bindings in packages/, and a reproduction kit in repro/. It is not published for download yet; ask us and we will send it.
bin/libhstcore.so # or .dylib
bin/include/hstcore.h
bin/hst-compile.<platform>
bin/hst_compare.<platform> # before/after
share/sample_op.bin
share/sample_stream.bin
packages/hstcore-{py,java,node,go,rs,dotnet}
packages/{spdelta,bindnum,claimlint}
repro/
install.sh verify.sh README.md LICENSE
hst_compare is the point of the package. It replays a delta stream through both paths — full recompute and delta apply — asserts the two outputs match exactly, and prints the speedup. Run it against the bundled sample first, then against your own artifact and your own stream. Pick the build for your machine; the license argument is optional and an empty string is fine:
./bin/hst_compare.linux-x86_64
./bin/hst_compare.darwin-arm64 \
--op your_op.bin \
--stream your_stream.bin \
--license "" \
--dump out.tsv
Read the ratio against a competent delta, not against full recompute. Against a from-scratch rebuild almost anything looks spectacular. The number that decides something is HST against the best incremental path you would otherwise write yourself — and where the changing set never moves, HST is expected to lose, because it scans tile-padded entries where a column-exact delta touches only the dirty columns. packages/spdelta is that baseline, shipped in the same tree so you can run it. If you have not run the fit test yet, start there; it is faster to rule a workload out in seven questions than in a build.
Platforms. The library is built for Linux x86_64 and macOS arm64. There is no hstcore.dll — on Windows the bindings install and the tooling runs from Git Bash, and there is no runtime for them to bind to. WSL, Windows on ARM, Linux aarch64 and macOS x86_64 are untested rather than supported.