/generated/rust/ after the Mintlify export step. This keeps the generated Rustdoc HTML out of the Mintlify source tree while still publishing the generated API with the site. The CI docs build uses a rustdoc-only CUDA artifact mode: it documents the Rust API surface without compiling PTX or cubin files (the two compiled GPU-code formats that a release build would normally emit).
Workspace rustdoc
Generated index for every documented crate in the current checkout.
Python extension crate
Native Rust layer used by the Python package.
Workspace Crates
Every crate in the xlog source tree, with a link to its generated API docs and a one-line summary of what it owns. Terms in parentheses are the exact type or module names as they appear in the API.Breaking changes
Changes on this list stop downstream Rust code from compiling. Each entry names the release it landed in and the edit that fixes the call site.0.12.0 — xlog-runtime
ExecutionStats and StratumStats — the two structs behind xlog run --stats —
are now #[non_exhaustive]. Code outside xlog-runtime can no longer build
either one from a struct literal, and can no longer match all of its fields
exhaustively.
Two edits fix a call site:
--stats prints are unchanged, so
anything that only reads the CLI output is unaffected.
0.12.0 — xlog-logic
Two public functions in xlog_logic::epistemic now return a fallible result
instead of a bare Program:
reduce_epistemic_program_to_ordinary(&Program) -> Result<Program>reduce_epistemic_program_to_ordinary_for_stratified_schema(&Program) -> Result<Program>
Program directly. The reduction can now fail — for
example when an augmenting modal cannot be resolved — and reports that instead of
producing a program that would fail later. Result here is
xlog_core::Result, whose error type is XlogError.
One edit fixes a call site:
0.12.0 — xlog-prob
ChoiceSource::choices — on the struct re-exported at the xlog_prob crate
root — is retyped from Vec<(GroundAtom, f64)> to
Arc<[(GroundAtom, f64)]>. A k-head annotated disjunction now pays for one
shared k-length slice rather than one clone per Bernoulli chain variable.
Struct literals and any Vec-only method call (push, truncate,
extend) stop compiling. Indexing, len(), iter(), and slice patterns are
unaffected.
Two edits fix a call site:
Published Crates
These crates are published on crates.io and also have hosted docs.rs pages:docs.rs builds can omit CUDA-gated modules because the hosted build environment has no CUDA toolkit or GPU. The generated site rustdoc is built from the current checkout with
XLOG_RUSTDOC_NO_CUDA=1 cargo doc --workspace --no-deps --locked, so it is the reference API surface for this documentation site. Release builds still require nvcc and CUDA Toolkit 13.x to compile kernel artifacts.